Muhammad Labeeb c79d196a8f
feat: migrate from pylint/black to ruff (#19)
* feat: migrate from pylint/black to ruff

* test: verify python package distribution build when running make test
2025-08-28 19:00:47 +05:00

28 lines
630 B
YAML

name: Run tests
on:
pull_request:
branches: [release, main]
push:
branches: [release, main]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install sass
run: npm install -g sass
- name: Install dependencies
run: |
pip install .[dev]
- name: Test lint, types, and format
run: make test