Skip to content

Commit b2a550a

Browse files
KengoTODAdemiurg906
authored andcommitted
ci: introduce GitHub Actions to verify Gradle wrapper
Signed-off-by: Kengo TODA <skypencil@gmail.com>
1 parent bb695fc commit b2a550a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
pull_request: {}
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: gradle/actions/wrapper-validation@v3
13+
- uses: gradle/actions/setup-gradle@v3
14+
- run: ./gradlew build
15+
- uses: actions/upload-artifact@v4
16+
with:
17+
path: build/reports

0 commit comments

Comments
 (0)