Skip to content

feat!: refactor code again #2

feat!: refactor code again

feat!: refactor code again #2

Workflow file for this run

name: Test
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
ruff:
name: "Ruff"
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