Skip to content

dotnet8

dotnet8 #12

Workflow file for this run

name: Build & Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Test
run: dotnet test ./ThinkingHome.NooLite.Tests --no-restore --verbosity normal -c Release -f net7.0