forked from apache/cassandra
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 823 Bytes
/
Copy pathcode-check.yaml
File metadata and controls
35 lines (30 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Ant Check
on:
push:
branches:
- '**'
jobs:
ant-check-jdk11:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Run Code Checks
run: .build/docker/check-code.sh 11
ant-check-jdk17:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Run Code Checks
run: .build/docker/check-code.sh 17