Skip to content

Hacky way to get Python3.8 compatability #5400

Hacky way to get Python3.8 compatability

Hacky way to get Python3.8 compatability #5400

Workflow file for this run

name: Check
on: push
jobs:
link:
name: Ruff linting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-cached-python
with:
version: "3.10"
- run: inv lint
mypy:
name: Mypy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-cached-python
with:
version: "3.10"
- run: inv protoc
- run: pip install -e . # gets all dependencies and the package itself into python env
- name: Build type stubs
run: inv type-stubs
- run: inv mypy
check-copyright:
name: Check copyright
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup-cached-python
with:
version: "3.10"
- run: inv check-copyright