We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85028fb commit a08d8d3Copy full SHA for a08d8d3
.github/workflows/tests.yaml
@@ -0,0 +1,20 @@
1
+name: Apache Flink ClickHouse Connector Tests CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ name: Apache Flink ClickHouse Connector tests
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - name: Set up JDK 17
12
+ uses: actions/setup-java@v3
13
+ with:
14
+ java-version: '21'
15
+ distribution: 'adopt'
16
+ architecture: x64
17
+ - name: Setup and execute Gradle 'test' task
18
+ uses: gradle/gradle-build-action@v2
19
20
+ arguments: test
0 commit comments