From 0e6638097d022b86c3931da5d8ec75f096025647 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sat, 11 Jan 2020 11:52:40 -0500 Subject: [PATCH] Try adding a flake8 workflow --- .github/workflows/style.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/style.yml diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml new file mode 100644 index 0000000..4967ccb --- /dev/null +++ b/.github/workflows/style.yml @@ -0,0 +1,10 @@ +name: Style Check + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: TrueBrain/actions-flake8@master