From 9056be7a3ba59c1b133b6fb626c3c98440e4b0eb Mon Sep 17 00:00:00 2001 From: Leandro Fernandes Date: Wed, 5 Jul 2023 10:08:56 -0300 Subject: [PATCH] Create test-dotnet.yml (#5) --- .github/workflows/test-dotnet.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test-dotnet.yml diff --git a/.github/workflows/test-dotnet.yml b/.github/workflows/test-dotnet.yml new file mode 100644 index 0000000..7a9d864 --- /dev/null +++ b/.github/workflows/test-dotnet.yml @@ -0,0 +1,22 @@ +name: Validate dotnet + +on: [ pull_request, push ] + +jobs: + setup-version: + runs-on: ubuntu-latest + strategy: + fail-fast: false + name: dotnet test + steps: + - uses: actions/checkout@v2 + - name: Setup dotnet + uses: actions/setup-dotnet@v1 + with: + dotnet-version: | + 2.1.x + 3.1.x + 5.0.x + 6.0.x + 7.0.x + - run: dotnet test test/test.csproj