fix(#177): jax version upgrade #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: prose/ci | |
on: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '__pycache__' | |
- '.pytest_cache' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- 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 |