Skip to content

Commit

Permalink
remove: select build command based on runner os
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaakola-aiven committed Jun 18, 2024
1 parent 49b327d commit b588ff2
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/main_push_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ jobs:
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
distribution: "temurin"
cache: gradle
- name: Build with Gradle
run: ./gradlew build test integrationTest
- name: Build in Windows
if: runner.os == 'Windows'
run: ./gradlew build test
- name: Build in MacOS
if: runner.os == 'macOS'
run: ./gradlew build test
- name: Build in Linux
if: runner.os == 'Linux'
run: ./gradlew build check test integrationTest

0 comments on commit b588ff2

Please sign in to comment.