Merge pull request #40 from gissily/dependabot/maven/xyz.opcal.cloud-… #111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push Package Sources and Build | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- '*' | |
paths-ignore: | |
- .github/workflows/windows-build.yml | |
jobs: | |
push-and-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup graalvm | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '21' | |
distribution: 'graalvm' | |
cache: 'maven' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Testing | |
run: | | |
./mvnw clean -PnativeTest test | |