Fix Q1 upload #2015
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
--- | |
# yamllint disable rule:line-length | |
name: pre-commit | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
push: | |
branches: | |
- main # We never expect this to fail, since it must have passed on the pull request, but this will let us create a cache on main that other PRs can use, speeding up the process | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5.1.0 | |
with: | |
python-version: '3.12' | |
- uses: actions/setup-dotnet@v4.0.0 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Install pre-commit | |
run: python -m pip install pre-commit | |
shell: bash | |
- name: Cache pre-commit environments | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pre-commit | |
key: pre-commit-3|${{ env.pythonLocation }}|${{ hashFiles('.pre-commit-config.yaml') }} | |
- name: Setup pre-commit environments | |
run: pre-commit run | |
- name: Run pre-commit dotnet-format, with retries | |
uses: Wandalen/wretry.action@v3 | |
with: | |
command: pre-commit run dotnet-format --show-diff-on-failure --color=always --all-files || { git checkout -- . ; exit 1 ; } # In case dotnet-format fails, reset the changes it made. This way, we can differentiate between a NuGet failure and a real formatting issue | |
- name: Remove dotnet-format from the list of pre-commit jobs to run (since we already ran it) | |
run: yq eval 'del(.repos[] | select(.hooks[].id == "dotnet-format"))' -i .pre-commit-config.yaml | |
- name: Run the rest of pre-commit | |
run: pre-commit run --show-diff-on-failure --color=always --all-files |