Skip to content

Merge pull request #107 from christianhelle/dependabot/nuget/xunit-2.6.0 #54

Merge pull request #107 from christianhelle/dependabot/nuget/xunit-2.6.0

Merge pull request #107 from christianhelle/dependabot/nuget/xunit-2.6.0 #54

Workflow file for this run

name: Sample
on:
workflow_dispatch:
push:
branches:
- '*'
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.os == 'macos-11.0' || matrix.node == 10 }}
strategy:
fail-fast: false
matrix:
node: [12, 14, 15, 16, 18, 19]
format: [ json, yaml ]
version: [ V2, V3 ]
os: [
ubuntu-18.04,
ubuntu-20.04,
ubuntu-22.04,
macos-10.15,
macos-11,
macos-12,
windows-2019,
windows-2022
]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.0.x
7.0.x
- name: Restore
run: dotnet restore sample/SampleApp/SampleApp.csproj
- name: Build
run: dotnet build sample/SampleApp/SampleApp.csproj