We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e29d86 commit d432e0cCopy full SHA for d432e0c
1 file changed
.github/workflows/format-check.yml
@@ -9,11 +9,20 @@ on:
9
10
jobs:
11
format-check:
12
- name: 📄 Check code formatting with "just fmt"
+ name: 📄 Check code formatting
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: actions/checkout@v5
16
- - uses: cachix/install-nix-action@v31
+ - name: 🧰 Checkout code
+ uses: actions/checkout@v5
17
+ - name: ⚙️ Install Nix
18
+ uses: cachix/install-nix-action@v31
19
with:
20
nix_path: nixpkgs=channel:nixos-unstable
- - run: nix-shell -p just --run "just fmt --ci"
21
+ - name: 🔒 Cache dependencies
22
+ uses: cachix/cachix-action@v16
23
+ with:
24
+ name: devenv
25
+ - name: 🔧 Install devenv.sh
26
+ run: nix profile add nixpkgs#devenv
27
+ - name: 🔨 Build the devenv shell and run tests
28
+ run: devenv test
0 commit comments