From ea1cd03191559d3e0e2241069464721c46e30791 Mon Sep 17 00:00:00 2001 From: sage Date: Mon, 26 Apr 2021 00:58:34 +0700 Subject: [PATCH] Gunakan requirements-dev.txt untuk instalasi di CI --- .github/workflows/lint.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5869f85..f13f0e0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,16 +23,13 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt + pip install -r requirements-dev.txt - name: Lint with black run: | - pip install black black . -l 79 --check - name: Lint with flake8 run: | - pip install flake8 flake8 --count --show-source --statistics - name: Lint with isort run: | - pip install isort isort -c -df