Skip to content

Run Tests

Run Tests #234

Workflow file for this run

name: Run Tests
on:
schedule:
- cron: '0 8 * * 1'
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
exclude:
- os: macos-latest
python-version: "3.6"
- os: ubuntu-latest
python-version: "3.6"
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Python ${{ matrix.python-version }} Subtest
steps:
- uses: actions/checkout@v3
- name: Link gfortran
uses: fortran-lang/setup-fortran@v1
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Dependencies
run: |
python -m pip install -e .
python -m pip install coverage
- name: Compile Sambvca21 for Windows
if: runner.os == 'windows'
run: |
gfortran -o sambvca21.exe test/sambvca21.f
- name: Compile Sambvca21 for Unix
if: runner.os != 'windows'
run: |
gfortran -o sambvca21.x test/sambvca21.f
- name: Run Tests
run: |
coverage run --source=. --omit=py2sambvca/__init__.py,setup.py,test/* -m unittest discover
- name: Show Coverage
run: |
coverage report -m
# This allows us to have a branch protection rule for tests and deploys with matrix
#
# taken from https:/orgs/community/discussions/4324#discussioncomment-3477871
ci-report-status:
runs-on: ubuntu-latest
needs: build
if: always()
steps:
- name: Successful CI
if: ${{ !(contains(needs.build.result, 'failure')) }}
run: exit 0
- name: Failing CI
if: ${{ contains(needs.build.result, 'failure') }}
run: exit 1