Skip to content

Merge pull request #15 from AntoineD/update-griffe #85

Merge pull request #15 from AntoineD/update-griffe

Merge pull request #15 from AntoineD/update-griffe #85

Workflow file for this run

name: Tests
on:
push:
paths-ignore:
- "*.md"
- "LICENSE**"
- ".gitignore"
pull_request:
paths-ignore:
- "*.md"
- "LICENSE**"
- ".gitignore"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run tox
# Run tox using the version of Python in `PATH`.
run: tox -e py-coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
# fail_ci_if_error: true
files: ./coverage.xml
verbose: true