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 6f70ecf commit 26f2d1cCopy full SHA for 26f2d1c
.github/workflows/testing.yml
@@ -45,8 +45,13 @@ jobs:
45
with:
46
python-version: ${{ env.PYTHON_VERSION }}
47
cache: "pip"
48
- - name: Install Dependencies
49
- run: just install
+ - name: Install dependencies
+ 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
55
- name: mypy check
56
run: just mypy
57
test:
0 commit comments