Skip to content

Commit a08d8d3

Browse files
committed
Add tests workflow.
1 parent 85028fb commit a08d8d3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
20+
arguments: test

0 commit comments

Comments
 (0)