Skip to content

Commit

Permalink
GitHub Action to built with GraalVM 22.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaroslav Tulach committed Jun 1, 2023
1 parent d9e63a3 commit 7505264
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Matrix the Ultimate

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-20.04
strategy:
matrix:
java: [ '11', '17' ]

steps:
- uses: actions/checkout@v2


- name: Set up Java
uses: graalvm/setup-graalvm@v1
with:
version: '22.3.1'
java-version: '17'
components: 'native-image'

- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit 7505264

Please sign in to comment.