Fix CI #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch : {} | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
ghc: | |
- "9.2.8" | |
- "9.4.8" | |
- "9.6.6" | |
- "9.8.2" | |
- "9.10.1" | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install GHCup on MacOS | |
if: matrix.os == 'macos-latest' | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_MINIMAL=1 sh | |
- name: Upgrade GHCup on Ubuntu | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
ghcup upgrade | |
- name: Install Tools | |
env: | |
GHCUP_CURL_OPTS: "--suppress-connect-headers" | |
run: | | |
ghcup list | |
ghcup rm ghc ${{ matrix.ghc }} || true | |
ghcup install ghc ${{ matrix.ghc }} --set | |
ghcup install cabal 3.12.1.0 --set | |
cabal update | |
- name: Build | |
run: | | |
cabal build all --enable-tests | |
- name: Run Tests | |
run: cabal test --test-show-details=always all | |
post_job: | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- run: | | |
echo "jobs info: ${{ toJSON(needs) }}" | |
- if: contains(needs.*.result, 'failure') | |
run: exit 1 | |
- if: contains(needs.*.result, 'cancelled') && needs.pre_job.outputs.should_skip != 'true' | |
run: exit 1 |