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 4acce53
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# Aiven's Apache Kafka Connectors

- [Aiven Connector Commons](../commons/README.md)
- [Aiven GCS Connector](../gcs-connector/README.md)
- [Aiven S3 Connector](../s3-connector/README.md)
- [Aiven Connector Commons](./commons/README.md)
- [Aiven GCS Connector](./gcs-connector/README.md)
- [Aiven S3 Connector](./s3-connector/README.md)

# Development

Expand Down
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 4acce53

Please sign in to comment.