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 5fa30eb + 9609f0e commit 5052aafCopy full SHA for 5052aaf
.github/workflows/nix.yml
@@ -0,0 +1,37 @@
1
+name: "Nix"
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ paths-ignore:
7
+ - '**.md'
8
+ - '**.txt'
9
+ - '.git*'
10
+ - 'doc/**'
11
+ - 'emacs/**'
12
+ - 'vim/**'
13
+ - '**/emacs-lint.yml'
14
+ pull_request:
15
16
17
18
19
20
21
22
23
24
25
+jobs:
26
+ tests:
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - name: Checkout code
30
+ uses: actions/checkout@v3
31
+ with:
32
+ submodules: true
33
+ - name: nix
34
+ uses: cachix/install-nix-action@v21
35
36
+ nix_path: nixpkgs=channel:nixos-unstable
37
+ - run: nix develop -c dune build @check @runtest -p merlin-lib,dot-merlin-reader,merlin
0 commit comments