Skip to content

Merge pull request #4 from wdolek/feature/move-projs-to-subdirs #23

Merge pull request #4 from wdolek/feature/move-projs-to-subdirs

Merge pull request #4 from wdolek/feature/move-projs-to-subdirs #23

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
branches: [ main ]
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal --filter "TestCategory!=Integration"