Skip to content

Merge pull request #95 from 7702244/patch-1 #15

Merge pull request #95 from 7702244/patch-1

Merge pull request #95 from 7702244/patch-1 #15

Workflow file for this run

name: CI Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET SDK
uses: actions/[email protected]
with:
dotnet-version: |
5.0.x
6.0.x
7.0.x
8.0.x
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: |
dotnet test --no-restore --framework net5.0
dotnet test --no-restore --framework net6.0
dotnet test --no-restore --framework net7.0
dotnet test --no-restore --framework net8.0