From 2a6cfaf16551390723abb30aa08be1132e10a267 Mon Sep 17 00:00:00 2001 From: Chris Kleinknecht Date: Tue, 24 Sep 2019 15:09:08 -0700 Subject: [PATCH] Test GH actions to lint --- .github/workflows/lint.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000000..2f158a70a06 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,18 @@ +name: Lint + +on: [pull_request] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-python@v1 + with: + python-version: '3.7' + - name: Install tox + run: pip install tox + - name: Run lint + run: tox -e lint