diff options
author | Sam Clegg <sbc@chromium.org> | 2020-05-12 01:43:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 22:43:08 -0700 |
commit | 08aa226fa21d15aeac865c0a38b77fb852728a88 (patch) | |
tree | ef70bb1e3886fd0f94faa21a7c1fb1603201c218 /.github | |
parent | 28af34277a9ebc1a91f51dfb51b267bbea073dab (diff) | |
download | wabt-08aa226fa21d15aeac865c0a38b77fb852728a88.tar.gz wabt-08aa226fa21d15aeac865c0a38b77fb852728a88.tar.bz2 wabt-08aa226fa21d15aeac865c0a38b77fb852728a88.zip |
Move flake8 CI from travis to github actions (#1419)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 11 |
1 files changed, 11 insertions, 0 deletions
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 }} |