Skip to content

fix: make calls to next server #8

fix: make calls to next server

fix: make calls to next server #8

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pdm
run: pip install pdm
- name: Install project dependencies
run: pdm install
- name: Run tests
run: PYTHONPATH=. pdm run pytest api/backend/tests