-
Notifications
You must be signed in to change notification settings - Fork 7
33 lines (31 loc) · 936 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
name: Continuous Integration
on: [push, pull_request]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: build
env:
SHALLOW: 1
JSPECIFY_CONFORMANCE_TEST_MODE: details # DO NOT MERGE
- name: Run Conformance Tests
uses: gradle/gradle-build-action@v2
with:
arguments: conformanceTests
- name: Check out jspecify/samples-google-prototype
run: git -C ../jspecify checkout samples-google-prototype
- name: Run Samples Tests
uses: gradle/gradle-build-action@v2
with:
arguments: jspecifySamplesTest