Net8.0 #27
Workflow file for this run
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: Rock Paper Scissors Build | |
on: | |
push: | |
paths: | |
- 'Projects/Rock Paper Scissors/**' | |
- '!**.md' | |
pull_request: | |
paths: | |
- 'Projects/Rock Paper Scissors/**' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- run: dotnet build "Projects\Rock Paper Scissors\Rock Paper Scissors.csproj" --configuration Release |