Skip to content

cli fixes, ruff, remote setup.cfg/setup.py, setuptools_scm #26

cli fixes, ruff, remote setup.cfg/setup.py, setuptools_scm

cli fixes, ruff, remote setup.cfg/setup.py, setuptools_scm #26

Workflow file for this run

name: PyTest
on:
push:
env:
COLUMNS: 120
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python_version }}"
- name: Install Dependencies
run: make install
- name: Run Tests
run: make pytest