Skip to content

Merge pull request #168 from Maxiboy441/issues/167 #268

Merge pull request #168 from Maxiboy441/issues/167

Merge pull request #168 from Maxiboy441/issues/167 #268

Workflow file for this run

name: .NET
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore Project/Project.sln
- name: Build
run: dotnet build Project/Project.sln --no-restore
- name: Test
run: dotnet test Project/Project.sln --no-build --verbosity normal