-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 899 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI
on:
pull_request:
# Trigger on merges to `main` to allow `gradle/gradle-build-action` runs to write their caches.
# https://github.com/gradle/gradle-build-action#using-the-caches-read-only
push:
branches:
- main
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: assemble
uses: gradle/gradle-build-action@v2
with:
arguments: assemble
- name: check
uses: gradle/gradle-build-action@v2
with:
arguments: check
- name: publishToMavenLocal
uses: gradle/gradle-build-action@v2
with:
arguments: |
-PRELEASE_SIGNING_ENABLED=false
publishToMavenLocal