Added workflows to test Linux, Windows, and Mac builds. #30
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: tests-linux | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: '${{ matrix.os }}:python-${{ matrix.python-version }}' | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
exclude: | |
- os: ubuntu-22.04 | |
python-version: '3.6' | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
id: setup_python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
id: install | |
if: steps.setup_python.outcome == 'success' | |
shell: bash -l {0} | |
run: | | |
python -m pip install -U pip | |
python -m pip install -e . | |
pip install pytest pytest-cov | |
sudo apt install lcov | |
- name: Run tests and generate coverage | |
if: steps.install.outcome == 'success' | |
shell: bash -l {0} | |
run: | | |
make coverage | |
# These steps will cause a fail if there is an error during the testing | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-*.xml | |
path: junit | |
- name: Download test results | |
uses: actions/download-artifact@v3 | |
with: | |
name: test-*.xml | |
path: junit | |
- name: Get unique id | |
uses: Tiryoh/gha-jobid-action@v1 | |
id: jobs | |
- name: Publish unit test results | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
if: always() | |
with: | |
files: junit/test-*.xml | |
- name: CodeCov | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./.coverage |