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.
2 parents 12e2b7b + ab0d67b commit 6dfc3c2Copy full SHA for 6dfc3c2
.github/workflows/ci.yml
@@ -0,0 +1,13 @@
1
+name: "CI"
2
+on:
3
+ pull_request:
4
+ push:
5
+jobs:
6
+ tests:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: cachix/install-nix-action@v9
11
+ with:
12
+ skip_adding_nixpkgs_channel: true
13
+ - run: nix-build release.nix
.travis.yml
release.nix
@@ -1,5 +1,5 @@
{ patchelfSrc ? { outPath = ./.; revCount = 1234; shortRev = "abcdef"; }
-, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-19.03.tar.gz
+, nixpkgs ? builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-20.03.tar.gz
, officialRelease ? false
}:
0 commit comments