aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2021-04-09 20:49:58 +0200
committerivarlovlie <git@ivarlovlie.no>2021-04-09 20:49:58 +0200
commitf495236551a8b5eab81778069936305a38859566 (patch)
treee8a94ec197094646b6264d3423e5b841c6ed9d01 /.github/workflows
parentfed9f1cfb7f9dbaf89491ca8e40eb241374cf0be (diff)
downloaddotnet-vipps-ecommerce-f495236551a8b5eab81778069936305a38859566.tar.xz
dotnet-vipps-ecommerce-f495236551a8b5eab81778069936305a38859566.zip
Remove github actions
Diffstat (limited to '.github/workflows')
-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