-
Notifications
You must be signed in to change notification settings - Fork 16
40 lines (34 loc) · 1017 Bytes
/
build.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
37
38
39
40
name: Build
on:
pull_request:
schedule:
- cron: "0 0 * * 0"
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
name: Test ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 45
steps:
- name: Fetch Sources
uses: actions/checkout@v4
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Install Bash on macOS
if: runner.os == 'macOS'
run: brew install bash
- name: Run Tests
shell: bash
run: |
set -e
bin/disable-gradle-daemon
./gradlew -i check integrationTest
bin/test