Python tests #967
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: Python tests | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 6 * * *" # Daily 6AM UTC build | |
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"] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade setuptools | |
- name: Install dependencies (Ubuntu) | |
run: | | |
sudo apt install gettext | |
if: "matrix.os == 'ubuntu-latest'" | |
- name: Style checks | |
run: | | |
pip install -U ".[dev]" | |
python -m ruff check . | |
- name: Typing checks | |
run: | | |
pip install -U mypy types-setuptools | |
python -m mypy setuptools_gettext | |
if: "matrix.python-version != 'pypy3'" | |
- name: Unit tests | |
run: | | |
pip install -U pytest | |
python -m pytest tests/ |