Tests #10
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 | |
on: [push] | |
jobs: | |
test: | |
name: Test ${{ matrix.python }} - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
python: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
exclude: | |
# excludes py3.7-py3.9 on macOS | |
- os: macos-latest | |
python: "3.7" | |
- os: macos-latest | |
python: "3.8" | |
- os: macos-latest | |
python: "3.9" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install | |
run: | | |
pip install -e .[test] | |
- name: Run tests | |
run: | | |
python --version | |
python -m yafowil.bootstrap.tests | |
- name: Run coverage | |
run: | | |
coverage run --source=src/yafowil -m yafowil.bootstrap.tests | |
coverage report -m --fail-under=48 |