From dff34aba51c11a6f7aec01aad2e8414bd6aecae7 Mon Sep 17 00:00:00 2001 From: Alex Mykyta Date: Mon, 28 Feb 2022 23:11:23 -0800 Subject: [PATCH] install before lint --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f2d81ff..82ebf51 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,9 +59,13 @@ jobs: run: | python -m pip install -U pylint + - name: Install + run: | + python -m pip install . + - name: Run Lint run: | - pylint --rcfile tests/pylint.rc src/peakrdl + pylint --rcfile tests/pylint.rc peakrdl #------------------------------------------------------------------------------- mypy: