From 7afaab3631c215902d084aeaa0dfdeb09290b0fc Mon Sep 17 00:00:00 2001 From: Pier-Luc Brault Date: Sat, 19 Aug 2023 00:53:36 -0400 Subject: [PATCH] Add GitHub action for pylint --- .github/workflows/pylint.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/pylint.yml diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml new file mode 100644 index 00000000..a0cf8499 --- /dev/null +++ b/.github/workflows/pylint.yml @@ -0,0 +1,19 @@ + +name: pylint +on: [push] + + +jobs: + pylint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + uses: VaultVulp/action-pipenv@v2.0.1 + with: + command: sync --dev + - name: Build + uses: VaultVulp/action-pipenv@v2.0.1 + with: + command: run pylint