Skip to content

Code cleanup

Code cleanup #26

name: Continuous Integration
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '.github/**'
- 'Documentation/**'
- 'LICENSE.md'
- 'README.md'
pull_request:
branches:
- main
paths-ignore:
- '.github/**'
- 'Documentation/**'
- 'LICENSE.md'
- 'README.md'
jobs:
continuous-integration:
runs-on: windows-latest
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
- name: Build
run: dotnet build --configuration 'Release' --no-restore
- name: Test
run: dotnet test --configuration 'Release' --no-build --verbosity normal