Skip to content

Remove Moq from Library #10

Remove Moq from Library

Remove Moq from Library #10

Workflow file for this run

name: .NET Core
on: [ push, pull_request ]
jobs:
build:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
2.1.x
- name: Install tools
run: |
dotnet restore
- name: Build Debug
run: dotnet build -c Debug -f netcoreapp2.1
- name: Run test suite netcoreapp2.1
run: dotnet test --no-build -c Debug -f netcoreapp2.1 Adyen.Test/Adyen.Test.csproj
- name: Run integration test suite netcoreapp2.1
run: dotnet test --no-build -c Debug -f netcoreapp2.1 Adyen.IntegrationTest/Adyen.IntegrationTest.csproj
if: ${{ github.event.pull_request.head.ref == 'main' }}