We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf2adc8 commit d03a42eCopy full SHA for d03a42e
.github/workflows/ci.yml
@@ -2,22 +2,23 @@ name: CI
2
3
on:
4
push:
5
- branches: [ "main" ]
+ branches: ["master"]
6
pull_request:
7
- branches: [ "*" ]
8
-
9
-permissions: write-all
+ branches: ["*"]
10
11
jobs:
12
- build:
+ CI:
13
runs-on: ubuntu-latest
14
15
steps:
+ - name: Checkout
+ uses: actions/checkout@v3
16
+
17
- name: Set up JDK 17
18
uses: actions/setup-java@v3
19
with:
- java-version: '17'
20
- distribution: 'temurin'
+ java-version: "17"
21
+ distribution: "temurin"
22
23
- name: Grant execute permission for gradlew
24
run: chmod +x gradlew
0 commit comments