Skip to content

test(ci): trigger automated test workflow #6

test(ci): trigger automated test workflow

test(ci): trigger automated test workflow #6

Workflow file for this run

name: Backend Tests
on:
pull_request:
paths:
- "backend/**"
branches:
- main
jobs:
test:
defaults:
run:
working-directory: backend
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install --no-interaction --no-ansi
- name: Run tests
run: poetry run pytest