Skip to content

Refactor StollService and WernstromService instructions for clarity; … #166

Refactor StollService and WernstromService instructions for clarity; …

Refactor StollService and WernstromService instructions for clarity; … #166

Workflow file for this run

name: ci
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore
working-directory: ./src
run: dotnet restore
- name: Build
working-directory: ./src
run: dotnet build
# - name: Execute unit tests
# working-directory: ./src
# run: dotnet test