remove an invalid check-only flag

pull/2060/head
Jason 10 months ago
parent 1bf0352e78
commit 79e1346a06

@ -16,15 +16,17 @@ jobs:
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: 3.10.14 python-version: 3.10.14
- uses: isort/isort-action@v1 - name: Install Black & isort
- name: Install Black run: pip install black isort
run: pip install black
- name: Run black check - name: Run black check
run: black --check . --line-length 101 run: black --check . --line-length 101
- name: Run isort check
run: isort . --check-only
- name: If needed, commit black changes to the pull request - name: If needed, commit black changes to the pull request
if: failure() if: failure()
run: | run: |
black . --line-length 101 black . --line-length 101
isort .
git config --global user.name github-actions git config --global user.name github-actions
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY

Loading…
Cancel
Save