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 dd5e66f commit 67caa4bCopy full SHA for 67caa4b
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ push:
8
9
10
+ workflow_dispatch:
11
12
+jobs:
13
+ build:
14
+ strategy:
15
+ matrix:
16
+ os: [ ubuntu-latest, windows-latest ]
17
+ runs-on: ${{ matrix.os }}
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: actions/setup-java@v4
21
+ with:
22
+ distribution: 'zulu'
23
+ java-version: 21
24
+ - uses: gradle/actions/setup-gradle@v3
25
26
+ gradle-home-cache-cleanup: true
27
+ validate-wrappers: true
28
+ - run: ./gradlew build
.github/workflows/gradle-wrapper-validation.yml
0 commit comments