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 bc36f8f commit 4ff8ad9Copy full SHA for 4ff8ad9
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: "CI"
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
7
+jobs:
8
+ tests:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - uses: cachix/install-nix-action@v18
13
+ with:
14
+ extra_nix_config: |
15
+ access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
16
17
+ - run: nix flake check
18
19
+ - run: |
20
+ cd test_depots/1.8.3
21
+ nix run ..
0 commit comments