Skip to content

Bump pytest from 8.3.2 to 8.3.3 (#53) #120

Bump pytest from 8.3.2 to 8.3.3 (#53)

Bump pytest from 8.3.2 to 8.3.3 (#53) #120

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Run Pytest
run: |
pytest