Handle the old python3-google-auth in Debian (1.5.x) #32
Workflow file for this run
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
# This is the official black github action per https://black.readthedocs.io/en/stable/integrations/github_actions.html | |
# The workflow will fail if `black --check --diff` finds files that need to be formatted | |
name: Lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: psf/black@stable |