Fix an issue where cbackpack was not able to find set items. (#460) #473
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: Style formatting | |
on: [push, pull_request] | |
jobs: | |
mypy: | |
name: Style check with Black and iSort | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: "3.8" | |
- run: "python -m pip install black==22.3.0 isort==5.10.1" | |
name: Install dependencies | |
- run: "make stylediff" | |
name: Run Style Checks |