-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (30 loc) · 767 Bytes
/
ci.yml
File metadata and controls
38 lines (30 loc) · 767 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
36
37
38
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Set up Java
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: "21"
cache: maven
- name: Test normalization scripts
run: python3 -m unittest discover -s scripts/tests
- name: Check generated sources
run: python3 scripts/sync_sdk.py --skip-fetch --check
- name: Build and test
run: mvn -B verify