From 793311e9b5d9f83761cb00917b45ca86da6501f6 Mon Sep 17 00:00:00 2001 From: David Boike Date: Sat, 10 Feb 2024 16:40:46 -0600 Subject: [PATCH] Use run-tests-action integrity tests --- .github/workflows/ci.yml | 8 ++++++++ .github/workflows/release.yml | 2 ++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec18f14dd19..0412dfe3f69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,3 +43,11 @@ jobs: retention-days: 7 - name: Run tests uses: Particular/run-tests-action@v1.7.0 + repo-integrity: + name: Repo integrity + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v4.1.1 + - name: Repo integrity tests + uses: Particular/repo-integrity-action@main diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b8fe7929871..434754bf482 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,8 @@ jobs: uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: 8.0.x + - name: Repo integrity tests + uses: Particular/repo-integrity-action@main - name: Build run: dotnet build src --configuration Release - name: Sign NuGet packages