Skip to content

Bump chex from 0.1.7 to 0.1.82 in /requirements #808

Bump chex from 0.1.7 to 0.1.82 in /requirements

Bump chex from 0.1.7 to 0.1.82 in /requirements #808

Workflow file for this run

name: lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- name: install dependencies
run: |
python -m pip install -r requirements/minimal.txt
python -m pip install -r requirements/lint.txt
# Mypy wants to inspect pytest imports in the tests/ folder
python -m pip install -r requirements/test.txt
- name: black
run: black --check .
- name: flake8
run: |
flake8
# Warn about complex functions.
flake8 --exit-zero --max-complexity=10
- name: build
run: |
# Mypy wants to check the type of the version string.
# This comes after the black step because black doesn't like
# the version file generated by setuptool_scm.
python -m pip install build
python -m build
- name: mypy
run: mypy