Change some more stuff that's logged to CSV #335
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: format | |
| on: [push, pull_request] | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install isort and black | |
| run: pip install isort black | |
| - name: Run black | |
| run: black . --check --verbose --diff --color --exclude="/*.ipynb/" | |
| - name: Run isort | |
| run: isort . --check --diff --profile black |