Skip to content

fix: increment version to 0.2.0 (#13) #28

fix: increment version to 0.2.0 (#13)

fix: increment version to 0.2.0 (#13) #28

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: [ '8.x' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
dotnet-quality: 'ga'
- name: Build solution
working-directory: src
run: dotnet build
- name: Run unit-tests
working-directory: src
run: dotnet test