Skip to content

Commit 4ff8ad9

Browse files
committed
Try adding CI workflow
1 parent bc36f8f commit 4ff8ad9

File tree

3 files changed

+986
-0
lines changed

3 files changed

+986
-0
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)