File tree Expand file tree Collapse file tree 2 files changed +13
-35
lines changed
Expand file tree Collapse file tree 2 files changed +13
-35
lines changed Original file line number Diff line number Diff line change 55 pull_request :
66 types : [opened, synchronize, reopened, ready_for_review]
77
8- paths-ignore :
9- - " **.md"
10-
118concurrency :
129 group : ${{ github.ref }}-${{ github.workflow }}
1310 cancel-in-progress : true
1714
1815jobs :
1916 build :
20- name : Rust tests on ${{ matrix.os }}
17+ name : Rust tests
2118 if : github.event.pull_request.draft == false
22- strategy :
23- fail-fast : false
24- matrix :
25- os : [ubuntu-latest]
26- runs-on : ${{ matrix.os }}
19+ runs-on : ubuntu-latest
2720 steps :
2821 - uses : actions/checkout@v4
2922 - run : rustup update
3629 run : cargo test --workspace --all-features
3730
3831 clippy :
39- name : Clippy on ${{ matrix.os }}
32+ name : Clippy
4033 if : github.event.pull_request.draft == false
41- strategy :
42- fail-fast : false
43- matrix :
44- os : [ubuntu-latest]
45- runs-on : ${{ matrix.os }}
34+ runs-on : ubuntu-latest
4635 steps :
4736 - uses : actions/checkout@v4
4837 - run : rustup update
@@ -57,12 +46,19 @@ jobs:
5746 fmt :
5847 name : Rustfmt
5948 if : github.event.pull_request.draft == false
60- strategy :
61- fail-fast : false
6249 runs-on : ubuntu-latest
6350 steps :
6451 - uses : actions/checkout@v4
6552 - run : rustup update
6653
6754 - name : Run rustfmt
6855 run : cargo fmt --all --check --verbose
56+
57+ prettier :
58+ name : Prettier fmt
59+ if : github.event.pull_request.draft == false
60+ runs-on : ubuntu-latest
61+ steps :
62+ - uses : actions/checkout@v4
63+ - name : Prettier
64+ run : npx prettier --check .
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments