Skip to content

Commit

Permalink
Unify lint workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Dec 31, 2024
1 parent 950b275 commit 58fa784
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 60 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/black.yml

This file was deleted.

47 changes: 39 additions & 8 deletions .github/workflows/pylint.yml → .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Lint Code Base (pylint)
name: Lint Code Base

defaults:
run:
Expand All @@ -13,17 +13,17 @@ on:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'

permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write

jobs:
build:
pylint:
name: Lint Code Base (pylint)
runs-on: ubuntu-latest

permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write

steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -55,3 +55,34 @@ jobs:
VALIDATE_PYTHON_PYLINT: true
PYTHON_PYLINT_CONFIG_FILE: pyproject.toml
FILTER_REGEX_EXCLUDE: .*tests/.*.(json|zip|sol)

black:
name: Lint Code Base (black)
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8

- name: Install dependencies
run: |
mkdir -p .github/linters
cp pyproject.toml .github/linters
- name: Black
uses: super-linter/super-linter/[email protected]
if: always()
env:
# run linter on everything to catch preexisting problems
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Run only black
VALIDATE_PYTHON_BLACK: true
PYTHON_BLACK_CONFIG_FILE: pyproject.toml
FILTER_REGEX_EXCLUDE: .*tests/.*.(json|zip|sol)

0 comments on commit 58fa784

Please sign in to comment.