Merge pull request #96 from zsk-poznan/fix/whitespace-issue #293
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: Python CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install black | |
run: pip3 install black | |
- name: Check format | |
run: black --check . |