From 9e8610a9ef5628d500cfb4c646f1da34689c90d9 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 05d6fc6123..7e6651648b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,3 +40,11 @@ jobs: retention-days: 7 - name: Run tests uses: Particular/run-tests-action@v1.6.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 c769b63e5c..6d78b49042 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,6 +19,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