Merge pull request #14 from runemalm/feature/next-version #64
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: Master workflow | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| checks: write | |
| jobs: | |
| pre-commit: | |
| name: Run pre-commit | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.9' | |
| - name: Run pre-commit | |
| uses: pre-commit/action@v3.0.1 | |
| unittests: | |
| uses: ./.github/workflows/run-unittests.yml | |
| with: | |
| python-versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]' |