Skip to content

chore: bump versions #15

chore: bump versions

chore: bump versions #15

Workflow file for this run

name: Test
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
test:
name: "Test"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/[email protected]"
- name: "Set up Python"
uses: actions/[email protected]
with:
python-version: "3.12"
cache: "pip"
- name: "Install requirements"
run: python3 -m pip install -r requirements.txt
- name: Run tests
run: python3 -m pytest tests -W ignore::DeprecationWarning