2023-07-24 18:35:04 +02:00
|
|
|
name: Perform checks
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
paths:
|
|
|
|
- '**'
|
|
|
|
- '!.github/**'
|
|
|
|
- '!*.yml'
|
|
|
|
- '!*.config'
|
2024-01-27 20:50:28 +01:00
|
|
|
- '!*.md'
|
2023-07-24 18:35:04 +02:00
|
|
|
- '.github/workflows/*.yml'
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
pull-requests: write
|
|
|
|
checks: write
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: pr-checks-${{ github.event.number }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
format:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 22:16:17 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-24 18:35:04 +02:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2023-12-04 19:15:30 +01:00
|
|
|
- uses: actions/setup-dotnet@v4
|
2023-07-24 18:35:04 +02:00
|
|
|
with:
|
|
|
|
global-json-file: global.json
|
|
|
|
|
2023-08-16 22:58:34 +02:00
|
|
|
- name: Overwrite csc problem matcher
|
|
|
|
run: echo "::add-matcher::.github/csc.json"
|
|
|
|
|
2023-07-24 18:35:04 +02:00
|
|
|
- run: dotnet restore
|
|
|
|
|
|
|
|
- name: Print dotnet format version
|
|
|
|
run: dotnet format --version
|
|
|
|
|
|
|
|
- name: Run dotnet format whitespace
|
|
|
|
run: |
|
|
|
|
dotnet format whitespace --verify-no-changes --report ./whitespace-report.json -v d
|
|
|
|
|
2023-08-01 00:15:37 +02:00
|
|
|
# For some unknown reason this step sometimes fails with exit code 139 (segfault?),
|
|
|
|
# so in that case we'll try again (3 tries max).
|
2023-07-24 18:35:04 +02:00
|
|
|
- name: Run dotnet format style
|
2023-08-01 00:15:37 +02:00
|
|
|
uses: TSRBerry/unstable-commands@v1
|
|
|
|
with:
|
|
|
|
commands: dotnet format style --severity info --verify-no-changes --report ./style-report.json -v d
|
|
|
|
timeout-minutes: 5
|
|
|
|
retry-codes: 139
|
2023-07-24 18:35:04 +02:00
|
|
|
|
2023-08-01 00:15:37 +02:00
|
|
|
# For some unknown reason this step sometimes fails with exit code 139 (segfault?),
|
|
|
|
# so in that case we'll try again (3 tries max).
|
2023-07-24 18:35:04 +02:00
|
|
|
- name: Run dotnet format analyzers
|
2023-08-01 00:15:37 +02:00
|
|
|
uses: TSRBerry/unstable-commands@v1
|
|
|
|
with:
|
|
|
|
commands: dotnet format analyzers --severity info --verify-no-changes --report ./analyzers-report.json -v d
|
|
|
|
timeout-minutes: 5
|
|
|
|
retry-codes: 139
|
2023-07-24 18:35:04 +02:00
|
|
|
|
|
|
|
- name: Upload report
|
|
|
|
if: failure()
|
2023-12-25 06:33:10 +01:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-07-24 18:35:04 +02:00
|
|
|
with:
|
|
|
|
name: dotnet-format
|
|
|
|
path: ./*-report.json
|
|
|
|
|
|
|
|
pr_build:
|
|
|
|
uses: ./.github/workflows/build.yml
|
|
|
|
needs: format
|
|
|
|
secrets: inherit
|