rc-testing #5
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: rc-testing | |
on: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
env: | |
PYSYN_CDBS: "https://ssb.stsci.edu/trds" | |
jobs: | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: RC testing in Linux with remote data | |
os: ubuntu-latest | |
python: '3.11' | |
toxenv: py311-test-predeps | |
toxposargs: --remote-data | |
- name: RC testing in OSX | |
os: macos-latest | |
python: '3.9' | |
toxenv: py39-test-predeps | |
- name: RC testing in Windows | |
os: windows-latest | |
python: '3.10' | |
toxenv: py310-test-predeps | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip tox | |
- name: Run tests | |
run: tox -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }} |