Merge pull request #105 from pogzyb/release/v1.1.9 #131
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/ |