Skip to content

Shape check fix and tests fix with version updates #65

Shape check fix and tests fix with version updates

Shape check fix and tests fix with version updates #65

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
tests:
name: ${{ matrix.name}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python-version: "3.10"
name: Python 3.10 with minimal dependencies
toxenv: py310-test
- os: ubuntu-latest
python-version: 3.11
name: Python 3.11 with minimal dependencies
toxenv: py311-test
- os: ubuntu-latest
python-version: 3.9
name: Python 3.9 with minimal dependencies
toxenv: py39-test
- os: ubuntu-latest
python-version: 3.8
name: Python 3.8 with minimal dependencies
toxenv: py38-test
- os: ubuntu-latest
python-version: 3.8
name: Python 3.8 with CASA
toxenv: py38-test-casa
- os: ubuntu-latest
python-version: 3.7
name: Python 3.7 with minimal dependencies
toxenv: py37-test
- os: ubuntu-latest
python-version: 3.9
name: Python 3.9 with all non-visualization dependencies
toxenv: py39-test-all
- os: ubuntu-latest
python-version: 3.9
name: Documentation
toxenv: build_docs
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install testing dependencies
run: |
python -m pip install tox codecov
mkdir ${GITHUB_WORKSPACE}/.casa
echo "datapath=['${GITHUB_WORKSPACE}/.casa/']; measurespath=datapath[0]; measures_auto_update=True; data_auto_update=True" > $GITHUB_WORKSPACE/config.py
pip install casadata
export CASASITECONFIG=$GITHUB_WORKSPACE/config.py
- name: Run tests with ${{ matrix.name }}
run: CASASITECONFIG=$GITHUB_WORKSPACE/config.py tox -v -e ${{ matrix.toxenv }}
- name: Upload coverage to codecov
if: ${{ contains(matrix.toxenv,'-cov') }}
uses: codecov/[email protected]
with:
file: ./coverage.xml