Issue 28 - Added py.typed file + removed old poetry.lock file #51
Workflow file for this run
This file contains hidden or 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 code checks | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: | |
| - main | |
| - 'releases/**' | |
| jobs: | |
| code-checks: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| - name: Install dev and test dependencies | |
| run: | | |
| pip install .[dev] | |
| pip install .[test] | |
| - name: Run code quality tools | |
| run: pre-commit run --all-files | |
| - name: Run unit tests & code coverage checks | |
| run: pytest |