index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-05-15 12:30:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-15 12:30:36 +0000 |
commit | 67659b2b38090f3724e876dbf325226673e082bf (patch) | |
tree | 2b8cad155bce7f06d176270dd4030fc37894e01b /.github/workflows | |
parent | baf857f4180c6826e1fc08dee88d5f0b4872fd07 (diff) | |
parent | e8d241ec96070ab471eebf7cfc9094c341c42466 (diff) |
-rw-r--r-- | .github/workflows/mypy.yaml | 12 |
diff --git a/.github/workflows/mypy.yaml b/.github/workflows/mypy.yaml new file mode 100644 index 00000000..18823a66 --- /dev/null +++ b/.github/workflows/mypy.yaml @@ -0,0 +1,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
\ No newline at end of file |