Support displaying overlapping annotations #11
Workflow file for this run
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: Black | |
on: | |
push: | |
branches: [ main, release-1.0.0] | |
pull_request: | |
branches: [ main, release-1.0.0] | |
jobs: | |
check-black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install isort 5.13.2 - check setup.py if version matches | |
run: | | |
python -m pip install --upgrade pip | |
pip install isort==5.13.2 | |
- name: Isort check | |
run: | | |
isort --check --diff factgenie || echo "We know it fails ATM" | |
isort --check --diff tests |