Skip to content

depen update(deps): bump sphinx from 7.2.6 to 7.3.6 #255

depen update(deps): bump sphinx from 7.2.6 to 7.3.6

depen update(deps): bump sphinx from 7.2.6 to 7.3.6 #255

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: Python ${{ matrix.python-version }}
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
experimental: [false]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
if: "!endsWith(matrix.python-version, '-dev')"
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: deadsnakes/[email protected]
if: endsWith(matrix.python-version, '-dev')
with:
python-version: ${{ matrix.python-version }}
- name: Installing dependencies Python ${{ matrix.python-version }}
run: |
pip install -r requirements.txt
pip install codecov coverage
- name: Running tests Python ${{ matrix.python-version }}
run: |
coverage run -m unittest discover
coverage xml
- name: Uploading coverage Python ${{ matrix.python-version }}
uses: codecov/codecov-action@v1