File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 7
7
name : ' Nix'
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - name : ' Check out code'
10
+ - name : Check out code
11
11
12
12
with :
13
13
submodules : recursive
14
+
14
15
- name : Install Nix
15
16
uses : cachix/install-nix-action@v12
16
17
with :
17
18
extra_nix_config : |
18
19
substituters = http://cache.nixos.org https://hydra.iohk.io
19
20
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
21
+
20
22
- name : Install Cachix
21
23
uses : cachix/cachix-action@v8
22
24
with :
23
25
name : kore
24
26
signingKey : ' ${{ secrets.KORE_CACHIX_SIGNING_KEY }}'
25
- - run : nix-build --arg checkMaterialization true -A kore -A project.kore.checks
26
- - run : nix-shell --run "echo OK"
27
+
28
+ - name : Check materialization
29
+ run : nix-build --arg checkMaterialization true -A project.stack-nix
30
+
31
+ - name : Build
32
+ run : nix-build -A kore
33
+
34
+ - name : Run unit tests
35
+ run : nix-build -A project.kore.checks
36
+
37
+ - name : Check shell
38
+ run : nix-shell --run "echo OK"
27
39
28
40
test-cabal :
29
41
name : ' Cabal'
You can’t perform that action at this time.
0 commit comments