Skip to content

#533 a lot of stuff #906

#533 a lot of stuff

#533 a lot of stuff #906

Workflow file for this run

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 Tests
run: ./gradlew build test compTest -i
- name: Native Image Integration Tests
run: ./gradlew build -x check nativeIntTest -i