Update dependency pytest to v8 #651
Workflow file for this run
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: "main" | |
on: ["push", "workflow_dispatch"] | |
jobs: | |
test_installable: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "actions/[email protected]" | |
- run: "python .tools/scripts/bump_requirements.py" | |
- name: "Test installation of template dev tools." | |
run: |- | |
python -m pip install --requirement 'template/.tools/requirements/requirements_core.txt' | |
python -m pip install --requirement 'template/.tools/requirements/requirements_ci.txt' | |
bump_precommit: | |
needs: ["test_installable"] | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/[email protected]" | |
- uses: "actions/[email protected]" | |
with: | |
python-version: "3.11" | |
- run: "python .tools/scripts/bump_requirements.py" | |
- uses: "stefanzweifel/[email protected]" | |
with: | |
commit_message: "Bump pre-commit configuration and related dependencies" |