diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index da982a7..06d4edd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,10 +11,13 @@ jobs: include: - os: ubuntu-latest platform: linux + build_command: build - os: macOS-latest platform: mac + build_command: build -x :pprint-kotlin - os: windows-latest platform: windows + build_command: build -x :pprint-kotlin steps: - uses: actions/checkout@v3 - name: Set up JDK 11 @@ -24,4 +27,4 @@ jobs: distribution: 'adopt' - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@v1 - - run: ./gradlew build test -Pplatform=${{ matrix.platform }} --stacktrace -Pnosign + - run: ./gradlew ${{ matrix.build_command }} -Pplatform=${{ matrix.platform }} --stacktrace -Pnosign