Skip to content

Build & Test

Build & Test #2

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:
prepare:
name: Prepare
runs-on: ubuntu-latest
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
build:
name: Build
runs-on: ubuntu-latest
needs: [prepare]
steps:
- name: Test
run: |
echo ls:
ls
echo --------------------------------------------
echo tree:
tree
echo --------------------------------------------
- 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
test:
name: Test
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Test
run: dotnet test --no-build --verbosity normal dekoeky.hello-world.tests