Skip to content

build(deps-dev): bump sphinx from 7.0.0 to 7.0.1 (#16) #50

build(deps-dev): bump sphinx from 7.0.0 to 7.0.1 (#16)

build(deps-dev): bump sphinx from 7.0.0 to 7.0.1 (#16) #50

Workflow file for this run

name: QA
'on':
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
yarn
yarn install-python-deps
- name: Lint with mypy
run: yarn mypy
- name: Lint with pylint
run: yarn pylint
- name: Check spelling
run: yarn check-spelling
- name: Check formatting
run: yarn check-formatting
strategy:
matrix:
python-version:
- '3.10'
- '3.11'