Skip to content

Cleanup to divide project #254

Cleanup to divide project

Cleanup to divide project #254

Workflow file for this run

name: Build and Test the project
on: [ push ]
jobs:
build:
strategy:
matrix:
#os: [ ubuntu-latest ]
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: graalvm/setup-graalvm@v1
with:
version: 'latest'
java-version: '17'
components: 'native-image'
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run gradle test
uses: gradle/gradle-build-action@v2
with:
arguments: test
# - name: Build and test
# run: ./gradlew test