Skip to content

Build & Test

Build & Test #4

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build & Test
on:
workflow_dispatch:
inputs:
sds:
type: text
description: Why are you running this workflow?
required: false
default: Testing
jobs:
build-and-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
name: Build & Test
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Restore dependencies
run: |
dotnet restore dekoeky.hello-world
dotnet restore dekoeky.hello-world.tests
- name: Build
run: |
dotnet build dekoeky.hello-world --no-restore
dotnet build dekoeky.hello-world.tests --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal dekoeky.hello-world.tests