Skip to content

Commit 1bb5264

Browse files
committed
Fix CI install
1 parent 0159433 commit 1bb5264

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/testing.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
with:
5050
python-version: ${{ env.PYTHON_VERSION }}
5151
- name: Install dependencies
52-
run: just install
52+
run: |
53+
uv sync --frozen
54+
maturin build --out dist
5355
- name: mypy check
5456
run: just mypy
5557
test:
@@ -61,8 +63,6 @@ jobs:
6163
runs-on: ${{ matrix.os }}
6264
steps:
6365
- uses: actions/checkout@v4
64-
- name: install Just
65-
uses: taiki-e/install-action@just
6666
- name: Install uv
6767
uses: astral-sh/setup-uv@v3
6868
with:
@@ -72,7 +72,9 @@ jobs:
7272
with:
7373
python-version: ${{ matrix.python-version }}
7474
- name: Install dependencies
75-
run: just install
75+
run: |
76+
uv sync --frozen
77+
maturin build --out dist
7678
- name: Run tests
7779
run: uv run pytest --cov=prelude_parser --cov-report=xml
7880
- name: Upload coverage

0 commit comments

Comments
 (0)