Skip to content

Commit

Permalink
Create dotnet.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dekoeky committed Oct 21, 2023
1 parent 3c446f0 commit 967c24d
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# 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: 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

0 comments on commit 967c24d

Please sign in to comment.