Run black #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Run black | |
defaults: | |
run: | |
# To load bashrc | |
shell: bash -ieo pipefail {0} | |
on: | |
pull_request: | |
branches: [main, dev] | |
paths: | |
- "**/*.py" | |
schedule: | |
# run CI every day even if no PRs/merges occur | |
- cron: '0 12 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Black | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- 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) |