Fix Issue 2179 - Installing Playwright on Ubuntu 24 LTS and using Python 3.12 #950
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: Lint | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable | |
with: | |
options: "--line-length 101" | |
- uses: isort/isort-action@v1 | |
with: | |
configuration: "--check-only --diff --profile black" |