Skip to content

Commit

Permalink
chore: run test and integrationTest target on GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaakola-aiven authored and nosahama committed Jul 3, 2024
1 parent 54e45a0 commit 95ca809
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions s3-connector/.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
- 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 95ca809

Please sign in to comment.