pdm #463
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 & Coverage | |
on: | |
push: | |
branches: | |
- '**' | |
- '!master' # excludes master | |
tags-ignore: | |
- '*.*' | |
pull_request: {} | |
jobs: | |
build: | |
name: Test (${{ matrix.python-version }}, ${{ matrix.os }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ 'macos-latest', 'windows-latest' ] | |
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8"] | |
include: | |
- os: ubuntu-latest | |
python-version: "3.8" | |
codecov: true | |
- os: ubuntu-latest | |
python-version: "3.9" | |
- os: ubuntu-latest | |
python-version: "3.10" | |
- os: ubuntu-latest | |
python-version: "3.11" | |
- os: ubuntu-latest | |
python-version: "3.12" | |
defaults: | |
run: | |
shell: bash | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: ⬇️ Checkout | |
uses: actions/checkout@v3 | |
- name: 🔩 Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 🐍 Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Setup PDM | |
uses: pdm-project/setup-pdm@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 🔩 Install with pdm | |
run: pdm install -G:all | |
- name: 🔎 pdm run python run_test.py | |
run: pdm run python run_test.py | |
- name: 🔼 Upload coverage to Codecov | |
if: (matrix.codecov) | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} | |
env_vars: OS,PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: true |