Fix current version breaking side menu (remove bootstrap, custom css, custom js, custom template) #177
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
# Only cancel in-progress jobs or runs for the current workflow | |
# This cancels the already triggered workflows for a specific PR without canceling | |
# other instances of this workflow (other PRs, scheduled triggers, etc) when something | |
# within that PR re-triggers this CI | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tox_pytest: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- name: Python 3.12 Tests | |
python-version: "3.12-dev" | |
os: ubuntu-latest | |
toxenv: py312 | |
- name: Python 3.11 Tests | |
python-version: "3.11" | |
os: ubuntu-latest | |
toxenv: py311 | |
- name: Python 3.10 Tests | |
python-version: "3.10" | |
os: ubuntu-latest | |
toxenv: py310 | |
- name: Python 3.9, with Code Coverage | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: coverage | |
- name: Python 3.9, Windows | |
python-version: "3.9" | |
os: windows-latest | |
toxenv: py39 | |
- name: Python 3.9, MacOS | |
python-version: "3.9" | |
os: macos-latest | |
toxenv: py39 | |
- name: Twine | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: twine | |
- name: Document Checks | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: checkdocs | |
- name: Code Style Checks | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: style | |
- name: ASDF Standard Document Build | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: asdf-standard | |
- name: ASDF Document Build | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: asdf | |
- name: ASDF-transform-schemas Document Build | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: asdf-transform-schemas | |
- name: ASDF-coordinates-schemas Document Build | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: asdf-coordinates-schemas | |
- name: ASDF-wcs-schemas Document Build | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: asdf-wcs-schemas | |
- name: ASDF-astropy Document Build | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: asdf-astropy | |
- name: rad Document Build | |
python-version: "3.9" | |
os: ubuntu-latest | |
toxenv: rad | |
- name: roman_datamodels Document Build | |
python-version: "3.11" | |
os: ubuntu-latest | |
toxenv: roman_datamodels | |
- name: romancal Document Build | |
python-version: "3.11" | |
os: ubuntu-latest | |
toxenv: romancal | |
- name: stdatamodels Document Build | |
python-version: "3.10" | |
os: ubuntu-latest | |
toxenv: stdatamodels | |
- name: jwst Document Build | |
python-version: "3.11" | |
os: ubuntu-latest | |
toxenv: jwst | |
steps: | |
- name: Checkout code | |
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 tox | |
run: | | |
python -m pip install tox | |
- name: Run tox | |
run: tox -e ${{ matrix.toxenv }} | |
- name: Upload Code Coverage | |
if: ${{ contains(matrix.toxenv,'coverage') }} | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.xml |