Skip to content

Commit

Permalink
Updated workflow - NOTE: CACHIX_AUTH_TOKEN env is now required
Browse files Browse the repository at this point in the history
  • Loading branch information
jake-arkinstall committed Jun 7, 2024
1 parent e38e68e commit ab0a4c2
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build_with_nix.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: build with nix
on:
schedule:
# 02:00 every Sunday morning
- cron: '0 2 * * 0'
pull_request:
branches:
- main
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -11,10 +11,14 @@ jobs:
build_and_test:
strategy:
matrix:
os: ['ubuntu-22.04', 'macos-13-xlarge']
os: ['ubuntu-22.04', 'macos-14']
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v25
- name: Build and test tket
- uses: cachix/cachix-action@15
with:
name: tket
signingKey: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Build and test pytket-qir
run: nix flake check -L

0 comments on commit ab0a4c2

Please sign in to comment.