We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1c4c31 + 391304b commit 2dbe252Copy full SHA for 2dbe252
2 files changed
.github/workflows/nix.yml
@@ -0,0 +1,17 @@
1
+name: nix build
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+jobs:
8
+ build:
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
+ - run: nix build
17
+ - run: nix flake check
flake.nix
@@ -21,7 +21,6 @@
21
default = tabletbot;
22
};
23
24
- devShell.${system} = import ./shell.nix { inherit pkgs; };
25
-
+ devShells.${system}.default = import ./shell.nix { inherit pkgs; };
26
27
}
0 commit comments