diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/checks.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bbc2eca8..f0aa2a06 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,6 +40,9 @@ jobs: - uses: actions/setup-dotnet@v3 with: global-json-file: global.json + + - name: Overwrite csc problem matcher + run: echo "::add-matcher::.github/csc.json" - name: Get git short hash id: git_short_hash diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 94d0a342..25276b72 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -31,6 +31,9 @@ jobs: with: global-json-file: global.json + - name: Overwrite csc problem matcher + run: echo "::add-matcher::.github/csc.json" + - run: dotnet restore - name: Print dotnet format version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63e6d018..5091944a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,6 +67,9 @@ jobs: - uses: actions/setup-dotnet@v3 with: global-json-file: global.json + + - name: Overwrite csc problem matcher + run: echo "::add-matcher::.github/csc.json" - name: Get version info id: version_info |
