diff options
| author | Ivar Løvlie <38570165+ivarlovlie@users.noreply.github.com> | 2021-04-02 22:40:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-02 22:40:49 +0200 |
| commit | 94d080f84d4f1d672438641a0e4fa5b5fcb92f69 (patch) | |
| tree | a3c2f3335b753eb14d99aa6a666fda60ea4d7070 /.github/workflows/run-tests.yml | |
| parent | 16d0ee981dea028b5cf29464e086d9e3fff75fb6 (diff) | |
| download | dotnet-vipps-ecommerce-94d080f84d4f1d672438641a0e4fa5b5fcb92f69.tar.xz dotnet-vipps-ecommerce-94d080f84d4f1d672438641a0e4fa5b5fcb92f69.zip | |
Create run-tests.yml
Diffstat (limited to '.github/workflows/run-tests.yml')
| -rw-r--r-- | .github/workflows/run-tests.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml new file mode 100644 index 0000000..707f9a6 --- /dev/null +++ b/.github/workflows/run-tests.yml @@ -0,0 +1,27 @@ +name: .NET + +on: + push: + branches: [ master ] + 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: Go to tests folder + run: pushd ./src/IOL.VippsEcommerce.Tests + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal |
