Skip to content

Merge pull request #4 from mjebrahimi/dependabot/nuget/DeepEqual-5.1.0 #21

Merge pull request #4 from mjebrahimi/dependabot/nuget/DeepEqual-5.1.0

Merge pull request #4 from mjebrahimi/dependabot/nuget/DeepEqual-5.1.0 #21

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup .NET
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.x.x
- name: Restore dependencies
run: dotnet restore
- name: Build (Release)
run: dotnet build --configuration Release --no-restore
- name: Test (Release)
run: dotnet test --configuration Release --no-build --no-restore