fix another delay related bug #251
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: run pytests | |
on: | |
push: | |
jobs: | |
ubuntu-pip: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup python | |
run: sudo apt-get update && sudo apt-get install -y python3-pip | |
- name: pip install jax | |
run: pip install ".[dev]" | |
- name: run tests | |
run: pytest |