Skip to content

chore: initialize pytest and create workflow #25

chore: initialize pytest and create workflow

chore: initialize pytest and create workflow #25

Workflow file for this run

name: pytest
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
install-dev-tools:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: dev env setup
uses: ./.github/actions/dev-env-setup
- run: yarn install --frozen-lockfile
working-directory: ./client
backend-tests:
needs: ["install-dev-tools"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: dev env setup
uses: ./.github/actions/dev-env-setup
- name: Run pytest
working-directory: ./server
run: make pythontests