We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0159433 commit 1bb5264Copy full SHA for 1bb5264
.github/workflows/testing.yml
@@ -49,7 +49,9 @@ jobs:
49
with:
50
python-version: ${{ env.PYTHON_VERSION }}
51
- name: Install dependencies
52
- run: just install
+ run: |
53
+ uv sync --frozen
54
+ maturin build --out dist
55
- name: mypy check
56
run: just mypy
57
test:
@@ -61,8 +63,6 @@ jobs:
61
63
runs-on: ${{ matrix.os }}
62
64
steps:
65
- uses: actions/checkout@v4
- - name: install Just
- uses: taiki-e/install-action@just
66
- name: Install uv
67
uses: astral-sh/setup-uv@v3
68
@@ -72,7 +72,9 @@ jobs:
72
73
python-version: ${{ matrix.python-version }}
74
75
76
77
78
- name: Run tests
79
run: uv run pytest --cov=prelude_parser --cov-report=xml
80
- name: Upload coverage
0 commit comments