setup: Look for releng in MESON_SOURCE_ROOT first #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linting | |
on: [push, pull_request] | |
jobs: | |
pyflakes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: lgeiger/pyflakes-action@master | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jpetrucciani/mypy-check@master | |
with: | |
mypy_flags: '--exclude examples --exclude setup' |