add defcon in the rtd sys path #152
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: Tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
inputs: | |
reason: | |
description: 'Reason for running workflow' | |
required: true | |
jobs: | |
test: | |
runs-on: ${{ matrix.platform }} | |
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
exclude: # Only test on the oldest and latest supported stable Python on macOS and Windows. | |
- platform: macos-latest | |
python-version: 3.8 | |
- platform: windows-latest | |
python-version: 3.8 | |
- platform: macos-latest | |
python-version: 3.9 | |
- platform: windows-latest | |
python-version: 3.9 | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install packages | |
run: pip install tox coverage | |
- name: Run Tox | |
run: tox -e py-cov | |
- name: Produce coverage files | |
run: | | |
coverage combine | |
coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
file: coverage.xml | |
flags: unittests | |
name: codecov-umbrella | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |