chore(deps): update actions/checkout action to v6 #35
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
| # This workflow runs the python unit tests | |
| name: tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: {} | |
| jobs: | |
| build-310: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run unit tests | |
| run: docker build . --target=test --build-arg PYTHON_VERSION=3.10 | |
| build-311: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run unit tests | |
| run: docker build . --target=test --build-arg PYTHON_VERSION=3.11 | |
| build-312: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run unit tests | |
| run: docker build . --target=test --build-arg PYTHON_VERSION=3.12 |