Skip to content

Commit f49f895

Browse files
committed
Simplify make commands in ci.yml
1 parent f71920d commit f49f895

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,6 @@ jobs:
1717
curl -LsSf https://astral.sh/uv/install.sh | sh
1818
echo "$HOME/.local/bin" >> $GITHUB_PATH
1919
20-
- name: make check
21-
run: |
22-
set -euxo pipefail
23-
make check
24-
25-
- name: make test
26-
run: |
27-
set -euxo pipefail
28-
make test
29-
30-
- name: format --check (from make -n format)
31-
shell: bash
32-
run: |
33-
set -euxo pipefail
34-
make checkformat
20+
- run: make check
21+
- run: make test
22+
- run: make checkformat

0 commit comments

Comments
 (0)