File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : format
2+
3+ on :
4+ workflow_call :
5+ pull_request :
6+ branches : [main]
7+
8+ jobs :
9+ format :
10+ name : format
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : cachix/install-nix-action@v31
15+ - run : nix develop .#ci --command just format
Original file line number Diff line number Diff line change 1+ name : lint
2+
3+ on :
4+ workflow_call :
5+ pull_request :
6+ branches : [main]
7+
8+ jobs :
9+ lint :
10+ name : lint
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v4
14+ - uses : cachix/install-nix-action@v31
15+ - run : nix develop .#ci --command just lint
Original file line number Diff line number Diff line change @@ -8,15 +8,18 @@ permissions:
88 contents : write
99
1010jobs :
11- quality :
12- uses : ./.github/workflows/quality.yaml
11+ format :
12+ uses : ./.github/workflows/format.yaml
13+
14+ lint :
15+ uses : ./.github/workflows/lint.yaml
1316
1417 test :
1518 uses : ./.github/workflows/test.yaml
1619
1720 dist :
1821 name : Build (${{ matrix.target }})
19- needs : [quality , test]
22+ needs : [format, lint , test]
2023 runs-on : ${{ matrix.os }}
2124 strategy :
2225 matrix :
Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,15 +9,18 @@ permissions:
99 contents : write
1010
1111jobs :
12- quality :
13- uses : ./.github/workflows/quality.yaml
12+ format :
13+ uses : ./.github/workflows/format.yaml
14+
15+ lint :
16+ uses : ./.github/workflows/lint.yaml
1417
1518 test :
1619 uses : ./.github/workflows/test.yaml
1720
1821 dist :
1922 name : Build (${{ matrix.target }})
20- needs : [quality , test]
23+ needs : [format, lint , test]
2124 runs-on : ${{ matrix.os }}
2225 strategy :
2326 matrix :
Original file line number Diff line number Diff line change 1- name : Test
1+ name : test
22
33on :
44 workflow_call :
55 pull_request :
6- push :
76 branches : [main]
87
98jobs :
109 test :
11- name : Test (${{ matrix.os }})
10+ name : test (${{ matrix.os }})
1211 runs-on : ${{ matrix.os }}
1312 strategy :
1413 matrix :
You can’t perform that action at this time.
0 commit comments