Query language only by primary key + update values if not matching #472
Workflow file for this run
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: Tests | |
on: [push, pull_request] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
jobs: | |
tests-coverage: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.10" | |
architecture: x64 | |
- name: Run tests | |
run: | | |
pip install -U pip invoke setuptools==65.5.0 toml==0.10.2 | |
cd backend | |
invoke install-deps --package test | |
invoke test --args "-v" | |
pwd | |
- name: Upload coverage report to codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
fail_ci_if_error: true | |
directory: backend/src |