Skip to content

Merge pull request #14 from merschformann/merschformann/fix-fixed-pod… #25

Merge pull request #14 from merschformann/merschformann/fix-fixed-pod…

Merge pull request #14 from merschformann/merschformann/fix-fixed-pod… #25

Workflow file for this run

name: build
on: [push]
jobs:
build:
name: build & test
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x' ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build
run: dotnet build --configuration XPlat
- name: Test
run: dotnet test --configuration XPlat --verbosity normal