Skip to content

Initial public release of spendee-cli #1

Initial public release of spendee-cli

Initial public release of spendee-cli #1

Workflow file for this run

name: Tests
on:
pull_request:
push:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip
- run: python -m pip install -e ".[dev]"
- run: python -m ruff check .
- run: python -m pytest -q
- run: python -m build