mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:25:50 +00:00
Create testing.yml
This commit is contained in:
parent
cabb74ed53
commit
8e430a6e74
1 changed files with 26 additions and 0 deletions
26
.github/workflows/testing.yml
vendored
Normal file
26
.github/workflows/testing.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: Testing GraalVM
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
testing:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Testing
|
||||||
|
steps:
|
||||||
|
- name: Set up JDK 17
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
java-version: '17'
|
||||||
|
distribution: 'temurin'
|
||||||
|
|
||||||
|
- name: Set up JDK 21 GraalVM
|
||||||
|
uses: actions/setup-graalvm@v1.2.3
|
||||||
|
with:
|
||||||
|
java-version: 21
|
||||||
|
distribution: 'graalvm-community'
|
||||||
|
|
||||||
|
- name: Testing
|
||||||
|
run: |
|
||||||
|
echo "Hello"
|
||||||
|
|
Loading…
Reference in a new issue