Skip to content

fix: bug fixes, performance improvements and code cleanup for v1.6.0 … #33

fix: bug fixes, performance improvements and code cleanup for v1.6.0 …

fix: bug fixes, performance improvements and code cleanup for v1.6.0 … #33

Workflow file for this run

name: Build
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
env:
DOTNET_VERSION: '10.0.x'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --configuration Release --verbosity normal
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: src/**/bin/Release/
retention-days: 7