Skip to content

Update pytest requirement from ~=8.1.1 to ~=8.2.0 #170

Update pytest requirement from ~=8.1.1 to ~=8.2.0

Update pytest requirement from ~=8.1.1 to ~=8.2.0 #170

Workflow file for this run

# workflow which lints and checks the code on every push and pull request
name: Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: checkout
uses: actions/checkout@v4
# https://github.com/actions/setup-python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: Install Deps
run: pip install -r requirements.txt -r requirements.dev.txt
# https://github.com/pre-commit/action
- name: run pre-commit
uses: pre-commit/[email protected]
env:
SKIP: no-commit-to-branch