Bump pytest from 8.2.2 to 8.3.1 #47
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 | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/*.yml' | |
- '**/*.py' | |
- 'requirements.txt' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/*.yml' | |
- '**/*.py' | |
- 'requirements.txt' | |
permissions: | |
actions: read | |
contents: write | |
issues: read | |
checks: write | |
pull-requests: write | |
jobs: | |
unit-test: | |
name: Run unit test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install PIP dependencies | |
run: python3 -m pip install -r requirements.txt | |
- name: Run PyTest | |
run: pytest --junit-xml=pytest.xml | |
env: | |
PYTHONPATH: ${{ github.workspace }} | |
- name: Publish Test Results | |
if: ${{ always() }} | |
uses: mikepenz/action-junit-report@v4 | |
with: | |
report_paths: "**/*.xml" | |
annotate_only: ${{ github.event_name == 'pull_request' }} | |
style-check: | |
name: Run style check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install PIP dependencies | |
run: python3 -m pip install -r requirements.txt | |
- name: Run Black Formatter | |
id: blackcheck | |
uses: psf/black@stable | |
with: | |
version: "~= 23.0" |