Fix type of on_ parameters (#1006) #1
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: Linting with black | |
on: [push, pull_request] | |
jobs: | |
black-lint: | |
runs-on: ubuntu-latest | |
name: black linting | |
steps: | |
- name: Check out source repository | |
uses: actions/checkout@v4 | |
- name: Run black linting | |
uses: psf/black@stable | |
with: | |
options: "--check" | |
src: "." |