build(deps-dev): bump pytest from 8.0.0 to 8.0.1 #306
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
# This workflow will upload a Python Package using Twine when a release is created | |
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | |
name: QualityControl | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ main ] | |
jobs: | |
deploy: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
env: | |
PIP_DISABLE_PIP_VERSION_CHECK: '1' | |
PIP_NO_CACHE_DIR: '1' | |
run: | | |
pip install -r requirements.txt -r requirements-dev.txt | |
- name: Check format and lint | |
run: | | |
invoke format --check lint | |
- name: Unit tests | |
run: | | |
invoke test |