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 97eee52 commit 37c9f02Copy full SHA for 37c9f02
.github/workflows/format-check.yml
@@ -0,0 +1,21 @@
1
+name: 📄 Check formatting
2
+
3
+on:
4
+ push:
5
+ branches-ignore:
6
+ - release
7
+ tags-ignore:
8
+ - "*"
9
+ pull_request:
10
+ workflow_dispatch:
11
12
+jobs:
13
+ format-check:
14
+ name: 📄 Check code formatting with "just fmt"
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: cachix/install-nix-action@v31
19
+ with:
20
+ nix_path: nixpkgs=channel:nixos-unstable
21
+ - run: nix-shell -p just --run "just fmt --ci"
0 commit comments