Bump version to 1.0.0 following a major upgrade (migrating to API v3)… #173
This file contains hidden or 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: Run formatter | |
| on: | |
| - push | |
| permissions: | |
| contents: read | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/workflows/install_deps | |
| - name: Run formatter | |
| run: poetry run black --check --diff . | |
| - name: Run isort | |
| run: poetry run isort --check-only --diff . | |