[pre-commit.ci] pre-commit autoupdate #97
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
# - '*.x' for latest “.x” branch e.g, (0.1.x) | |
paths-ignore: | |
- "**.md" | |
pull_request: | |
branches: | |
- main | |
# - '*.x' for latest “.x” branch e.g, (0.1.x) | |
paths-ignore: | |
- "**.md" | |
release: | |
types: [published] | |
jobs: | |
Testing: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install poetry | |
run: pipx install poetry | |
- name: Set Up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install dependencies | |
run: poetry install | |
- name: Run tests with coverage | |
run: poetry run pytest -svv --cov=./ --cov-report=xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' | |
with: | |
name: sync with poetry # optional | |
fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) |