This repository was archived by the owner on Feb 6, 2025. It is now read-only.
fix(lint): mostly type hints #200
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: Run all tests | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] | |
name: Run tests for Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- run: make test | |
- uses: EnricoMi/publish-unit-test-result-action@v1 | |
if: always() | |
with: | |
files: src/reports/**/junit*.xml | |
- name: Archive test and coverage reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-and-coverage-report | |
path: src/reports |