Skip to content

Running the modules' tests #31

Running the modules' tests

Running the modules' tests #31

Workflow file for this run

name: Run Module tests
run-name: Running the modules' tests
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Graal VM JDK 17
uses: graalvm/setup-graalvm@v1
with:
distribution: 'graalvm'
java-version: '17'
- name: Build with Maven
run: mvn clean install package
- name: Run tests with Maven
run: mvn test