Skip to content

added zotero endpoint #20

added zotero endpoint

added zotero endpoint #20

Workflow file for this run

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