diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml new file mode 100644 index 0000000000..3d0a5dc08e --- /dev/null +++ b/.github/workflows/python-ci.yml @@ -0,0 +1,22 @@ +name: Python CI + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v4 + with: + python-version: "3.10" + + - name: Install flake8 + run: pip install flake8 + + - name: Run lint + run: flake8 . || true