Skip to content

Feature/overhauling cli #2

Feature/overhauling cli

Feature/overhauling cli #2

Workflow file for this run

name: Pytest
on: pull_request
jobs:
ci_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[dev]"
- name: Run pytest
run: |
pytest
ci_ruff:
runs-on: ubuntu-latest
name: "ruff"
steps:
- uses: davidslusser/[email protected]
with:
src: "src"
pip_install_command: "pip install -e .[dev]"
python_version: "3.11"