Skip to content

Commit eb2dfac

Browse files
committed
GitHub Actions workflow
1 parent 59ca792 commit eb2dfac

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Dice Game Build
2+
on:
3+
push:
4+
paths:
5+
- 'Projects/Dice Game/**'
6+
pull_request:
7+
paths:
8+
- 'Projects/Dice Game/**'
9+
workflow_dispatch:
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: setup dotnet
16+
uses: actions/setup-dotnet@v1
17+
with:
18+
dotnet-version: 6.0.x
19+
- name: dotnet build
20+
run: dotnet build "Projects\Dice Game\Dice Game.csproj" --configuration Release

0 commit comments

Comments
 (0)