Skip to content

Commit

Permalink
fix(#177): jax version upgrade
Browse files Browse the repository at this point in the history
fix(#177): jax version upgrade
  • Loading branch information
lgrcia authored May 17, 2024
2 parents 7e7f190 + 5d00ccb commit 3fe775a
Show file tree
Hide file tree
Showing 4 changed files with 1,635 additions and 1,571 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,27 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -U pip poetry
python -m poetry install --with dev
- name: Test with pytest
run: |
python -m poetry run python -m pytest
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -U pip poetry
Expand Down
Loading

0 comments on commit 3fe775a

Please sign in to comment.