summaryrefslogtreecommitdiffstats
path: root/.github/workflows/run-tests.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/run-tests.yml')
-rw-r--r--.github/workflows/run-tests.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml
deleted file mode 100644
index d63f071..0000000
--- a/.github/workflows/run-tests.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: .NET
-
-on:
- release:
- types: [created]
- pull_request:
- branches: [ master ]
-
-jobs:
- build:
-
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v2
- - name: Setup .NET
- uses: actions/setup-dotnet@v1
- with:
- dotnet-version: 5.0.x
- - name: Restore dependencies
- run: dotnet restore src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj
- - name: Build
- run: dotnet build --no-restore src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj
- - name: Test
- run: dotnet test --no-build --verbosity normal src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj