Fixed initialization and formatting. #104
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: Format Check | |
on: | |
push: | |
paths: | |
- '**.py' | |
workflow_dispatch: | |
jobs: | |
pre-commit: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
# ------------------- | |
# Checkout code | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
# ------------------- | |
# Setup environment in remote runner | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- uses: pre-commit/[email protected] |