From 7db82d2e075799d024c09df47b23ccb6e3a1001e Mon Sep 17 00:00:00 2001 From: Rico Date: Tue, 3 Mar 2020 23:25:33 +0100 Subject: [PATCH] chore: add stylecheck.yml github actions workflow (#181) --- .github/workflows/stylecheck.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/stylecheck.yml diff --git a/.github/workflows/stylecheck.yml b/.github/workflows/stylecheck.yml new file mode 100644 index 0000000..ac56b97 --- /dev/null +++ b/.github/workflows/stylecheck.yml @@ -0,0 +1,12 @@ +name: Stylecheck + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: wemake-python-styleguide + uses: wemake-services/wemake-python-styleguide@0.13.4