Skip to content

Commit 26f2d1c

Browse files
committed
Fix install
1 parent 6f70ecf commit 26f2d1c

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/testing.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,13 @@ jobs:
4545
with:
4646
python-version: ${{ env.PYTHON_VERSION }}
4747
cache: "pip"
48-
- name: Install Dependencies
49-
run: just install
48+
- name: Install dependencies
49+
run: |
50+
pip install -U pip
51+
pip install -r requirements-dev.txt
52+
pip install -e .[all]
53+
maturin build --out dist
54+
pip install --no-index --find-links=dist/ prelude-parser
5055
- name: mypy check
5156
run: just mypy
5257
test:

0 commit comments

Comments
 (0)