Skip to content

Merge pull request #9 from kwtc/feature/project-structure-and-offer-s… #18

Merge pull request #9 from kwtc/feature/project-structure-and-offer-s…

Merge pull request #9 from kwtc/feature/project-structure-and-offer-s… #18

Workflow file for this run

name: .NET build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
env:
SOLUTION: ./Kwtc.Tjek.Client.sln
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore $SOLUTION
- name: Build
run: dotnet build $SOLUTION -c Release --no-restore
- name: Test
run: dotnet test $SOLUTION -c Release --no-build --verbosity normal