Skip to content

feat: testing pipeline #14

feat: testing pipeline

feat: testing pipeline #14

Workflow file for this run

name: Test Backend
on:
pull_request:
types: [opened, edited, reopened]
branches: [main, develop]
push:
branches: [main, develop]
env:
PYTHON_VERSION: '3.11'
jobs:
test-backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Checkout to git repository
uses: actions/checkout@v2
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-installation-cache
- name: Install poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
- name: Setup Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'poetry'
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run unit tests
run: make run-tests