We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2307fab commit c4c720fCopy full SHA for c4c720f
.github/workflows/nightly-ci.yaml
@@ -61,10 +61,17 @@ jobs:
61
env:
62
CI_NIGHTLY: True
63
steps:
64
- - name: Run tests
65
- run: |
66
- cd ${{ matrix.package }}
67
- nix build .#${{ matrix.package }}-tests
68
- nix develop
69
- cabal test --test-options '-m "@nightly"'
+ - name: 📥 Checkout repository
+ uses: actions/checkout@v4
70
+ - name: ❄ Setup Nix/Cachix
+ uses: ./.github/actions/nix-cachix-setup
+ with:
+ authToken: '${{ secrets.CACHIX_CARDANO_SCALING_AUTH_TOKEN }}'
71
+
72
+ - name: Run tests
73
+ run: |
74
+ cd ${{ matrix.package }}
75
+ nix build .#${{ matrix.package }}-tests
76
+ nix develop
77
+ cabal test --test-options '-m "@nightly"'
0 commit comments