fix(test): failing yaml conversion #95
Workflow file for this run
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
--- | |
name: "Tests" | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
checks: | |
name: "Run Nix checks" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Enable cache for Nix | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Run Nix checks | |
run: nix flake check | |
default-ghc: | |
name: "Build & test with Nix (default unstable GHC)" | |
needs: [checks] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Enable cache for Nix | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Build default package with Nix | |
run: nix build | |
ghc-94: | |
name: "Build & test with Nix (GHC 9.4)" | |
needs: [checks] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Enable cache for Nix | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Build package with Nix (GHC 9.4) | |
run: nix build ".#richenv-ghc94" | |
ghc-96: | |
name: "Build & test with Nix (GHC 9.6)" | |
needs: [checks] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Enable cache for Nix | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Build package with Nix (GHC 9.6) | |
run: nix build ".#richenv-ghc96" | |
ghc-98: | |
name: "Build & test with Nix (GHC 9.8)" | |
needs: [checks] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Enable cache for Nix | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Build package with Nix (GHC 9.8) | |
run: nix build ".#richenv-ghc98" | |
# ghc-910: | |
# name: "Build & test with Nix (GHC 9.10)" | |
# needs: [checks] | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [ubuntu-latest, macos-latest] | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Install Nix | |
# uses: cachix/install-nix-action@v27 | |
# - name: Enable cache for Nix | |
# uses: DeterminateSystems/magic-nix-cache-action@v2 | |
# - name: Build package with Nix (GHC 9.10) | |
# run: nix build ".#richenv-ghc910" |