From d1c94944f2b06a702c741c6f2d4c7af6435efb4e Mon Sep 17 00:00:00 2001 From: Ananya Mantravadi Date: Tue, 17 Oct 2023 23:35:00 +0530 Subject: [PATCH] Create pycodestyle.yml --- .github/workflows/pycodestyle.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/pycodestyle.yml diff --git a/.github/workflows/pycodestyle.yml b/.github/workflows/pycodestyle.yml new file mode 100644 index 000000000..a5ad176eb --- /dev/null +++ b/.github/workflows/pycodestyle.yml @@ -0,0 +1,13 @@ +name: Python Style Checker + +on: [push] + +jobs: + pycodestyle: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Python Style Checker + uses: andymckay/pycodestyle-action@0.1.3