Skip to content

Bump sphinx from 4.3.2 to 7.3.7 #216

Bump sphinx from 4.3.2 to 7.3.7

Bump sphinx from 4.3.2 to 7.3.7 #216

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- v*
pull_request:
jobs:
aiomultiprocess:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
os: [macOS-latest, ubuntu-latest]
experimental: [false]
include:
- python-version: 3.6
os: windows-latest
experimental: true
- python-version: 3.7
os: windows-latest
experimental: true
- python-version: 3.8
os: windows-latest
experimental: true
- python-version: 3.9
os: windows-latest
experimental: true
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
make setup
pip install -U .
- name: Test
run: make test
- name: Lint
run: make lint
- name: Coverage
run: codecov --token ${{ secrets.CODECOV_TOKEN }} --branch ${{ github.ref }}
continue-on-error: true