-
-
Notifications
You must be signed in to change notification settings - Fork 84
27 lines (21 loc) · 595 Bytes
/
ci.yml
File metadata and controls
27 lines (21 loc) · 595 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
name: CI
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
- name: Build and Unit Tests
run: ./gradlew build test -i
- name: Comp Tests
run: ./gradlew -x check compTest -i
- name: Native Image Integration Tests
run: ./gradlew build -x check nativeIntTest -i