Skip to content

unimpeded_database

unimpeded_database #91

Workflow file for this run

name: Unit tests
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: "0 0 * * *"
jobs:
pip:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
- name: Install dependencies
run: pip install -e ".[test]"
- name: Test with pytest
run: pytest --cov=unimpeded tests
with:

Check failure on line 25 in .github/workflows/unittests.yaml

View workflow run for this annotation

GitHub Actions / Unit tests

Invalid workflow file

The workflow is not valid. .github/workflows/unittests.yaml (Line: 25, Col: 9): Unexpected value 'with'
ACCESS_TOKEN: ${{ secrets.ZENODO_SANDBOX_TOKEN }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}