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 47d9bc5 commit abe1ce1Copy full SHA for abe1ce1
.github/workflows/nix-flake.yml
@@ -34,6 +34,12 @@ jobs:
34
- name: "Check `nix develop` shell"
35
run: nix develop --check
36
- name: "Check `nix develop` shell can run command"
37
- run: nix develop --command "echo"
+ run: nix develop --command echo
38
- run: nix build
39
- run: nix flake check
40
+ - name: "Run all Haskell tests in the `nix develop` shell"
41
+ run: |
42
+ nix develop --command cabal update
43
+ nix develop --command cabal test
44
+ - name: "Run all PureScript tests in the `nix develop` shell"
45
+ run: nix develop --command spago test
0 commit comments