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 77d3d82 commit 2c054e8Copy full SHA for 2c054e8
.github/workflows/build.yaml
@@ -0,0 +1,28 @@
1
+name: Build
2
+on:
3
+ push:
4
+ branches: [ master ]
5
+ pull_request:
6
7
+
8
+jobs:
9
+ snapshot:
10
+ runs-on: ${{ matrix.os }}
11
+ strategy:
12
+ matrix:
13
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
14
+ steps:
15
+ - name: Checkout sources
16
+ uses: actions/checkout@v4
17
18
+ - uses: actions/setup-java@v4
19
+ with:
20
+ distribution: corretto
21
+ java-version: 17
22
+ cache: 'gradle'
23
24
+ - name: Setup Gradle
25
+ uses: gradle/actions/setup-gradle@v3
26
27
+ - name: Build with Gradle
28
+ run: ./gradlew check assemble
0 commit comments