Skip to content

Commit 7643173

Browse files
committed
ci: fix
1 parent e8005fe commit 7643173

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v4
3434

35+
- name: Install just task runner
36+
run: |
37+
curl --proto '=https' --tlsv1.2 --silent --show-error --fail "https://github.com/casey/just/releases/download/${{JUST_VERSION}}/just-${{JUST_VERSION}}-${{JUST_OS}}-{{ JUST_ARCH }}.tar.gz" | tar -xz -x -C /usr/local/bin
38+
just --version
39+
env:
40+
JUST_OS: linux
41+
JUST_ARCH: x64
42+
JUST_VERSION: "1.34.0"
43+
shell: bash
44+
3545
- name: Install Rust toolchain
3646
uses: dtolnay/rust-toolchain@stable
3747
with:
@@ -50,10 +60,10 @@ jobs:
5060
uses: taiki-e/install-action@nextest
5161

5262
- name: Check Rust crates
53-
run: make check-common
63+
run: just check-common
5464

5565
- name: Check WASM
56-
run: make check-wasm
66+
run: just check-wasm
5767

5868
check-python:
5969
name: Check Python
@@ -65,6 +75,16 @@ jobs:
6575
steps:
6676
- uses: actions/checkout@v4
6777

78+
- name: Install just task runner
79+
run: |
80+
curl --proto '=https' --tlsv1.2 --silent --show-error --fail "https://github.com/casey/just/releases/download/${{JUST_VERSION}}/just-${{JUST_VERSION}}-${{JUST_OS}}-{{ JUST_ARCH }}.tar.gz" | tar -xz -x -C /usr/local/bin
81+
just --version
82+
env:
83+
JUST_OS: linux
84+
JUST_ARCH: x64
85+
JUST_VERSION: "1.34.0"
86+
shell: bash
87+
6888
- name: Set up Python
6989
uses: actions/setup-python@v5
7090
with:
@@ -88,4 +108,4 @@ jobs:
88108
uses: astral-sh/setup-uv@v4
89109

90110
- name: Check Python package
91-
run: make check-py
111+
run: just check-py

0 commit comments

Comments
 (0)