Skip to content

Bump pytest from 8.1.1 to 8.2.2 in the python group across 1 directory #229

Bump pytest from 8.1.1 to 8.2.2 in the python group across 1 directory

Bump pytest from 8.1.1 to 8.2.2 in the python group across 1 directory #229

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/