chore: change obps reference to server #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pytest | |
on: | |
push: | |
branches: [main, develop, 73-initialize-pytest] | |
pull_request: | |
branches: [main, develop, 73-initialize-pytest] | |
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 |