Skip to content

Commit 0231613

Browse files
committed
Add empty workflow file to enable GitHub features
1 parent 27c72e0 commit 0231613

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/blank.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Set up JDK 17
16+
uses: actions/setup-java@v3
17+
with:
18+
java-version: '17'
19+
distribution: 'temurin'
20+
cache: gradle
21+
- name: Grant execute permission for gradlew
22+
run: chmod +x gradlew

0 commit comments

Comments
 (0)