Skip to content

Commit

Permalink
Added nix caching, set support matrix for nix builds to use macos13 r…
Browse files Browse the repository at this point in the history
…ather than macos12
  • Loading branch information
jake-arkinstall committed Oct 20, 2023
1 parent 1887c49 commit fa9e232
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-with-nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ jobs:
build_and_test:
strategy:
matrix:
os: ['ubuntu-22.04', 'macos-12']
os: ['ubuntu-22.04', 'macos-13']
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v23
- uses: actions/cache@v3
with:
path: ~/nix
key: nix-${{matrix.os}}
- name: Build and test tket
run: nix flake check -L
run: nix --store ~/nix flake check -L

0 comments on commit fa9e232

Please sign in to comment.