Skip to content

feat: improvements on pipeline #1

feat: improvements on pipeline

feat: improvements on pipeline #1

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:
backend-ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Checkout to git repository
uses: actions/checkout@v2
- name: Setup Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v3
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install poetry
uses: snok/install-poetry@v1
with:
version: 1.5.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: poetry install
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: Run unit tests
run: make run-tests