Skip to content

Commit ca84eb5

Browse files
committed
Start fixing CI
1 parent 49b8b26 commit ca84eb5

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Install Dependencies
2020
run: |
21-
pip3 install mypy -U
21+
pip3 install -U mypy
2222
2323
- name: mypy
2424
run: mypy --show-column-numbers --hide-error-context .

.github/workflows/tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
- name: Checkout repository
1313
uses: actions/checkout@v4
1414

15+
- name: Install Dependencies
16+
run: |
17+
pip3 install -U maturin
18+
1519
- name: Install local ipl3checksum
1620
run: pip install .
1721

.github/workflows/tests_other_repo.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ jobs:
1717
with:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919

20+
- name: Install Dependencies
21+
run: |
22+
pip3 install -U maturin
23+
2024
- name: Install local ipl3checksum
2125
run: pip install .
2226

0 commit comments

Comments
 (0)