Skip to content

Bump slsa-framework/slsa-github-generator from 1.9.0 to 1.10.0 #177

Bump slsa-framework/slsa-github-generator from 1.9.0 to 1.10.0

Bump slsa-framework/slsa-github-generator from 1.9.0 to 1.10.0 #177

name: Haskell Stack
on:
push:
branches: [master]
pull_request:
branches: [master]
types: [opened, synchronize]
permissions: {}
jobs:
test:
name: CI
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false # don't cancel other jobs if one fails
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# We don't split on multiple resolvers as the ~/.stack grows to ~700MB
# whereas all others (including Cabal ones) barely reach 50MB. Instead,
# we only use nightly as the resolver, as this should handle the newest
# GHC and is also the place where failures will be reported from Stack.
resolver: [nightly]
steps:
- name: Checkout code
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
with:
persist-credentials: false
- name: Setup Haskell Compiler (stack)
id: setup-haskell
uses: haskell-actions/setup@594e355d8c7f270ef637fd97c0205eaf74df8383 # v2.6.2
with:
enable-stack: true
stack-no-global: true
- name: Cache .stack-work
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
with:
path: .stack-work
key: stack-work-${{ matrix.os }}-${{ matrix.resolver }}-${{ hashFiles('stack.yaml', '**/*.cabal') }}-${{ hashFiles('simple-echo-example/*') }}
restore-keys: |
stack-work-${{ matrix.os }}-${{ matrix.resolver }}-${{ hashFiles('stack.yaml', '**/*.cabal') }}-
stack-work-${{ matrix.os }}-${{ matrix.resolver }}-
- name: Cache ~/.stack
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
with:
path: ${{ steps.setup-haskell.outputs.stack-root }}
key: stack-root-${{ matrix.os }}-${{ matrix.resolver }}-${{ hashFiles('stack.yaml', '**/*.cabal') }}
restore-keys: stack-root-${{ matrix.os }}-${{ matrix.resolver }}-
- name: Get dependencies
run: stack build --resolver=${{ matrix.resolver }} --only-dependencies --test --bench --no-run-tests --no-run-benchmarks
- name: Build code
run: stack build --resolver=${{ matrix.resolver }} --test --bench --no-run-tests --no-run-benchmarks
- name: Test code
run: stack test --resolver=${{ matrix.resolver }}
- name: Benchmark code
run: stack bench --resolver=${{ matrix.resolver }}
- name: Generate documentation
run: stack haddock --resolver=${{ matrix.resolver }}