Skip to content

🚧 update analytics tracking control with env #32

🚧 update analytics tracking control with env

🚧 update analytics tracking control with env #32

Workflow file for this run

name: Python CI
on:
push:
defaults:
run:
working-directory: backend
jobs:
tests-and-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Ruff linting & formatting
uses: chartboost/ruff-action@v1
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
cache: "poetry"
python-version-file: "backend/.python-version"
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest