Skip to content

Use published conformance tests #187

Use published conformance tests

Use published conformance tests #187

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: jspecify-reference-checker
steps:
- name: Check out jspecify-reference checker
uses: actions/checkout@v4
with:
path: jspecify-reference-checker
- name: Check out jspecify
uses: actions/checkout@v4
with:
repository: jspecify/jspecify
path: jspecify
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
- name: Build and Test
run: ./gradlew build conformanceTests demoTest --include-build ../jspecify
env:
SHALLOW: 1
- name: Check out jspecify/samples-google-prototype
if: always()
run: |
git fetch --depth=1 origin samples-google-prototype
git checkout samples-google-prototype
working-directory: jspecify
- name: Run Samples Tests
if: always()
run: ./gradlew jspecifySamplesTest --include-build ../jspecify