Skip to content

shared test helpers #39

shared test helpers

shared test helpers #39

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.0.x']
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release
- name: Test Core
run: dotnet test test/Danom.Tests -c Release
- name: Test Validation
run: dotnet test test/Danom.Validation.Tests -c Release