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 b6b8cc8 commit 95bda5aCopy full SHA for 95bda5a
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ Nix:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
17
+ - uses: cachix/install-nix-action@v17
18
+ with:
19
+ nix_path: nixpkgs=channel:nixos-22.05
20
21
+ - uses: cachix/cachix-action@v10
22
23
+ name: metacraft-labs-blockchain-dev
24
+ authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
25
26
+ - name: Build Nix dev shell
27
+ run: nix build --print-build-logs '.#devShell.x86_64-linux'
0 commit comments