Skip to content

Bump pytest from 8.1.1 to 8.2.0 in the python group #213

Bump pytest from 8.1.1 to 8.2.0 in the python group

Bump pytest from 8.1.1 to 8.2.0 in the python group #213

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: dependencies
run: |
python -m pip install --upgrade pip
pip install -e '.[dev]'
- name: ruff
run: |
ruff --output-format=github .
- name: black
run: |
black --check .
- name: pytest
run: |
python -m pytest --capture=no tests/