Net8.0 (#90) #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tower Of Hanoi Build | |
on: | |
push: | |
paths: | |
- 'Projects/Tower Of Hanoi/**' | |
- '!**.md' | |
pull_request: | |
paths: | |
- 'Projects/Tower Of Hanoi/**' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- run: dotnet build "Projects\Tower Of Hanoi\Tower Of Hanoi.csproj" --configuration Release |