Skip to content

Commit 3fe775a

Browse files
authored
fix(#177): jax version upgrade
fix(#177): jax version upgrade
2 parents 7e7f190 + 5d00ccb commit 3fe775a

File tree

4 files changed

+1635
-1571
lines changed

4 files changed

+1635
-1571
lines changed

.github/workflows/ci.yml

+20-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,27 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
19-
- name: Set up Python 3.8
20-
uses: actions/setup-python@v4
18+
- uses: actions/checkout@v4
19+
- name: Set up Python
20+
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.8
22+
python-version: "3.10"
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install -U pip poetry
26+
python -m poetry install --with dev
27+
- name: Test with pytest
28+
run: |
29+
python -m poetry run python -m pytest
30+
31+
test:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
- name: Set up Python
36+
uses: actions/setup-python@v5
37+
with:
38+
python-version: "3.10"
2339
- name: Install dependencies
2440
run: |
2541
python -m pip install -U pip poetry

0 commit comments

Comments
 (0)