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 c26dd9b commit fe49c32Copy full SHA for fe49c32
.github/workflows/test.yml
@@ -5,9 +5,16 @@ on:
5
branches:
6
- master
7
jobs:
8
+ nixfmt:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v4
12
+ - uses: cachix/install-nix-action@v31
13
+ - run: nix fmt .
14
tests:
15
+ needs: nixfmt
16
runs-on: ubuntu-latest
17
steps:
18
- uses: actions/checkout@v4
19
- uses: cachix/install-nix-action@v31
- - run: nix run ./tests#run .
20
+ - run: nix run ./tests#run .
0 commit comments