added zotero endpoint #20
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: Test | |
on: | |
push: | |
jobs: | |
test: | |
name: Test Application | |
runs-on: ubuntu-latest | |
env: | |
BASEROW_USER: ${{secrets.BASEROW_USER}} | |
BASEROW_PW: ${{secrets.BASEROW_PW}} | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
run: | | |
pip install --upgrade --upgrade-strategy eager -r requirements.txt | |
- name: Run tests | |
run: coverage run -m pytest -v | |
- name: Create Coverage Report | |
run: coverage xml | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.xml | |
fail_ci_if_error: false | |
verbose: true |