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 6017441 commit f15f853Copy full SHA for f15f853
.github/actions/nix-setup/action.yaml
@@ -0,0 +1,10 @@
1
+name: Set up Nix
2
+description: Sets up Nix and Nix store caching
3
+
4
+runs:
5
+ using: "composite"
6
+ steps:
7
+ - uses: DeterminateSystems/nix-installer-action@main
8
+ - uses: DeterminateSystems/magic-nix-cache-action@main
9
+ with:
10
+ use-flakehub: false
.github/workflows/ci.yaml
@@ -0,0 +1,17 @@
+name: CI
+on:
+ pull_request:
+ push:
+ branches: [main]
+jobs:
+ ci:
+ runs-on: ubuntu-latest
11
12
+ - uses: actions/checkout@v4
13
+ - uses: ./.github/actions/nix-setup
14
+ - name: Run tests
15
+ run: |
16
+ nix develop -c \
17
+ bin/build
.travis.yml
0 commit comments