MAINT change `clinicalù variable name to metadata #550
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: pr-validation | |
# Controls when the workflow will run | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
schedule: | |
# Run every week day at 3h30 UTC | |
- cron: '30 3 * * 1,2,3,4,5' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
run_tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pre-commit | |
pip install -e ."[dev]" | |
pip install -r docs/requirements.txt | |
- name: pre-commit | |
run: pre-commit run --all-files --show-diff-on-failure | |
- name: Test with pytest | |
run: | | |
coverage run -m pytest | |
- name: Generate code coverage report | |
run: | | |
coverage html | |
- name: Upload coverage artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-coverage-report | |
path: htmlcov/ | |
retention-days: 20 | |
- name: Compile docs | |
run: | | |
cd docs | |
make clean html |