vectorize transit over rp #55
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 tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
envs: | | |
- name: tests, py3.10 | |
linux: test | |
os: ubuntu-latest | |
python-version: 3.10 | |
- name: tests, py3.11 | |
linux: test | |
os: ubuntu-latest | |
python-version: 3.11 | |
- name: tests with jax dependency, py3.11 | |
linux: test-jax | |
os: ubuntu-latest | |
python-version: 3.11 | |
- name: Code style checks | |
python: 3.11 | |
os: ubuntu-latest | |
linux: codestyle | |
- name: Test building of Sphinx docs | |
python: 3.11 | |
os: ubuntu-latest | |
linux: build-docs |