From 08aa226fa21d15aeac865c0a38b77fb852728a88 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 12 May 2020 01:43:08 -0400 Subject: Move flake8 CI from travis to github actions (#1419) --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b08ab4c9..9af12a89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,6 +9,17 @@ on: pull_request: jobs: + lint: + name: Lint + runs-on: ubuntu-latest + steps: + - uses: actions/setup-python@v1 + with: + python-version: '3.x' + - uses: actions/checkout@v1 + - name: install tools + run: pip3 install flake8==3.7.8 + - run: flake8 build: name: Build runs-on: ${{ matrix.os }} -- cgit v1.2.3