Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/.github/workflows/mypy.yaml
blob: 18823a66c3ff003c318ff40760eeb6751cfebbb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
on: [push, pull_request]
name: Lint Python and Find Syntax Errors
jobs:
  lint:
    runs-on: ubuntu-latest
    container:
      image: archlinux:latest
    steps:
      - uses: actions/checkout@v2
      - run: pacman --noconfirm -Syu python python-pip mypy
      - name: run mypy
        run: mypy . --ignore-missing-imports