Merge pull request #1162 from spencerckhuang/hotfix/FA-fix #1770
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
# Runs the backend linter: black | |
name: Backend Linter | |
on: | |
push: | |
branches: | |
- prod | |
- develop | |
- feature/dark-mode-timetable | |
pull_request: | |
branches: | |
- prod | |
- develop | |
- feature/dark-mode-timetable | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: psf/black@stable | |
with: | |
options: "--check --verbose" | |
version: 22.3.0 |