Merge pull request #88 from pogzyb/fix-mismatched-keys #99
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: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# Check code style with black, defaults to options "--check --diff" | |
- name: Check code style with black | |
uses: psf/black@stable | |
run: black --include asyncwhois/ |