Skip to content

⬆️ Bump urllib3 from 1.26.15 to 1.26.17 #209

⬆️ Bump urllib3 from 1.26.15 to 1.26.17

⬆️ Bump urllib3 from 1.26.15 to 1.26.17 #209

Workflow file for this run

name: CI
on:
# Need to also run on pushes to master since PRs from a fork won't have
# access to the super user token, thereby skipping the integration tests
# and doctests
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
env:
REDCAPDEMO_SUPERUSER_TOKEN: ${{ secrets.REDCAPDEMO_SUPERUSER_TOKEN }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run poetry image
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: 1.3.1
- name: Install dependencies
run: |
poetry install -E data_science
- name: Run doctests
# Forks can't run doctests, requires super user token
if: github.actor == 'pwildenhain'
run: |
poetry run pytest --doctest-only --doctest-plus
- name: Run tests
run: |
poetry run pytest
- name: Build docs
run: |
poetry run mkdocs build
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0