Skip to content

feat: removing logs #44

feat: removing logs

feat: removing logs #44

Workflow file for this run

name: Run backend tests
permissions:
contents: read
on:
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- 'docs/**'
- '.github/**'
- 'README.md'
- 'CHANGELOG.md'
- 'LICENSE'
- 'docker-compose.local.yaml'
- 'frontend/**'
- 'docker-compose.prod.yaml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: |
cd backend
poetry install --no-interaction
- name: Run tests
run: |
cd backend
poetry run pytest