From b66b2db5e7a490b0224ef3da148601ded351ffe6 Mon Sep 17 00:00:00 2001 From: Andrew Cullen Date: Sun, 10 Dec 2023 14:42:53 -0500 Subject: [PATCH 1/3] Create dotnet.yml --- .github/workflows/dotnet.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml new file mode 100644 index 0000000..bf986cd --- /dev/null +++ b/.github/workflows/dotnet.yml @@ -0,0 +1,28 @@ +# This workflow will build a .NET project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net + +name: .NET + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Setup .NET + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 6.0.x + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal From 25cd8a26c94840a8edc85662e60e3989736f942e Mon Sep 17 00:00:00 2001 From: Andrew Cullen Date: Sun, 10 Dec 2023 15:48:59 -0500 Subject: [PATCH 2/3] Delete .github/workflows/unittests.yml --- .github/workflows/unittests.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/unittests.yml diff --git a/.github/workflows/unittests.yml b/.github/workflows/unittests.yml deleted file mode 100644 index 4374adb..0000000 --- a/.github/workflows/unittests.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Unit Tests - -on: [pull_request, push] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Setup dotnet 2.2 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '2.2.103' - - name: Setup dotnet 3.1 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '3.1.x' - - name: Setup dotnet 6.0 - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '6.0.x' - - name: Build with dotnet - run: dotnet build --configuration Release - - name: Run unit tests - run: dotnet test --filter "FullyQualifiedName~UnitTests" From 26a8142814e5cf703e4b19f76c07a3236f67d848 Mon Sep 17 00:00:00 2001 From: Andrew Cullen Date: Sun, 10 Dec 2023 15:51:52 -0500 Subject: [PATCH 3/3] skip integration tests --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index bf986cd..eac7141 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -25,4 +25,4 @@ jobs: - name: Build run: dotnet build --no-restore - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test --no-build --verbosity normal --filter FullyQualifiedName!~Workstation.UaClient.IntegrationTests