Skip to content

Remove gradle and switch to poetry #18

Remove gradle and switch to poetry

Remove gradle and switch to poetry #18

Workflow file for this run

name: "Test & Lint"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allow manual triggering
workflow_dispatch:
jobs:
test-python:
runs-on: ubuntu-latest
steps:
- name: "Checkout source code"
uses: actions/checkout@v4
- name: "Install Python"
uses: actions/setup-python@v5
with:
python-version: "3.10.12"
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies if not in cached venv
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: "Run ruff format"
run: poetry run ruff format
- name: "Run ruff check"
run: poetry run ruff check
- name: "Run mypy"
run: poetry run mypy .
- name: "Run tests"
run: poetry run pytest --cov=src --cov-report=html