Skip to content

Merge pull request #49 from doomviruz/main #213

Merge pull request #49 from doomviruz/main

Merge pull request #49 from doomviruz/main #213

Workflow file for this run

name: Build and Test
on:
push:
branches: [ "main" ]
paths-ignore:
- '*.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
7.0.x
6.0.x
- name: Display dotnet version
run: dotnet --version
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
working-directory: ./src
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
working-directory: ./src