Bump pytest from 7.4.3 to 8.0.0 #53
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: CI/CQ | |
on: | |
pull_request: | |
types: ["opened", "synchronize", "reopened"] | |
jobs: | |
codechecks: | |
name: Code Quality | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set Up Python-${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Pre Commit Checks | |
uses: pre-commit/[email protected] | |
- name: Install Dependencies | |
run: pip install .[dev] | |
- name: Collect Tests | |
run: pytest --collect-only tests | |
- name: Run Tests | |
run: pytest -sv tests/ | |
- name: Analysis (git diff) | |
if: failure() | |
run: git diff |