Skip to content

Merge pull request #9 from lookbusy1344/dependabot/nuget/NuGet.Packag… #92

Merge pull request #9 from lookbusy1344/dependabot/nuget/NuGet.Packag…

Merge pull request #9 from lookbusy1344/dependabot/nuget/NuGet.Packag… #92

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: '7.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Debug --no-restore RecordValueAnalyser.Test
- name: Test
run: dotnet test --no-restore