From ed81412ee6aa9fae140b6913dd60f6e6a66dc279 Mon Sep 17 00:00:00 2001 From: "David P. Baker" Date: Mon, 11 Dec 2023 16:09:59 -0500 Subject: [PATCH] Build and test in one step, since `build` already depends on `conformanceTests`. --- .github/workflows/build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 502363d..3920419 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,16 +14,12 @@ jobs: with: distribution: temurin java-version: 17 - - name: Build + - name: Build and Test uses: gradle/gradle-build-action@v2 with: - arguments: build + arguments: build conformanceTests env: SHALLOW: 1 - - 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