Merge pull request #1066 from jhuopensource/fix/last-updated-time #1534
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 |