Merge pull request #377 from LCOGT/feature/gitops #2
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: Build/Test | |
on: | |
# Run this workflow for pushes on all branches | |
push: | |
jobs: | |
tests: | |
name: ${{ matrix.name }} (${{ matrix.os }}, ${{ matrix.toxenv }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Documentation build | |
os: ubuntu-latest | |
python-version: 3.9 | |
toxenv: build_docs | |
- name: Python 3.9 with developer version of astropy and numpy | |
os: ubuntu-latest | |
python-version: 3.9 | |
toxenv: py39-test-devdeps | |
- name: Python 3.8 with minimal dependencies | |
os: ubuntu-latest | |
python-version: '3.8' | |
toxenv: py38-test | |
- name: Python 3.9 with minimal dependencies | |
os: ubuntu-latest | |
python-version: '3.9' | |
toxenv: py39-test | |
- name: Python 3.10 with minimal dependencies | |
os: ubuntu-latest | |
python-version: '3.10' | |
toxenv: py310-test | |
- name: Code style checks | |
os: ubuntu-latest | |
python-version: 3.9 | |
toxenv: codestyle | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Install graphviz dependency | |
if: "endsWith(matrix.toxenv, 'build_docs')" | |
run: sudo apt-get -y install graphviz | |
- name: Run tests | |
run: | | |
tox -e ${{ matrix.toxenv }} |