diff options
| author | Adam Janovsky | 2021-12-19 11:54:26 +0100 |
|---|---|---|
| committer | Adam Janovsky | 2021-12-19 11:54:26 +0100 |
| commit | 24877b1dbe8a25ef4aa3070da549aa1cb63147c6 (patch) | |
| tree | 0fbcc1bc3b99c5ae690619b48a036dfd6cebdc49 | |
| parent | 2d636e14317c2cf1cac4ae15e251817f52b932fc (diff) | |
| download | sec-certs-24877b1dbe8a25ef4aa3070da549aa1cb63147c6.tar.gz sec-certs-24877b1dbe8a25ef4aa3070da549aa1cb63147c6.tar.zst sec-certs-24877b1dbe8a25ef4aa3070da549aa1cb63147c6.zip | |
add flake8 workflow
| -rw-r--r-- | .github/workflows/lint.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 782bf3dd..6352ce71 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -36,3 +36,15 @@ jobs: - uses: isort/isort-action@master with: requirementsFiles: "requirements.txt dev_requirements.txt" + flake8-lint: + runs-on: ubuntu-latest + name: Lint + steps: + - name: Check out source repository + uses: actions/checkout@v2 + - name: Set up Python environment + uses: actions/setup-python@v1 + with: + python-version: "3.8" + - name: flake8 Lint + uses: py-actions/flake8@v2
\ No newline at end of file |
