Skip to content

chore: update readme badges and license (#14) #56

chore: update readme badges and license (#14)

chore: update readme badges and license (#14) #56

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, edited, synchronize]
push:
branches: ['master', 'main']
env:
PYTHONPATH: './src:./test'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']
python-version: ['3.10', '3.11', '3.12', '3.13']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: install deps
run: |
pip install -r requirements-dev.txt
pip install --editable .
- name: lint
run: ruff check
- name: format
run: ruff format --check
- name: test
run: pytest --cov=./src/ ./tests/