diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml new file mode 100644 index 000000000..b9a85c3c9 --- /dev/null +++ b/.github/workflows/dotnet-core.yml @@ -0,0 +1,22 @@ +name: .NET Core + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + name: Build and Test + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Install dependencies + run: dotnet restore + - name: Build with .NET + run: dotnet build --no-restore --configuration Release + - name: Unit Tests + run: dotnet test --no-build --no-restore --configuration Release