Skip to content

Commit f8898bc

Browse files
committed
Add build workflow
1 parent 7285d92 commit f8898bc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
name: Build
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
12+
- name: Install .NET 8.0.x
13+
uses: actions/setup-dotnet@v4
14+
with:
15+
dotnet-version: "8.0.x"
16+
17+
- name: Build
18+
run: dotnet build -c Release osu.Game.Resources

0 commit comments

Comments
 (0)