Skip to content

test: Add unit test for addition in SimpleMathTest #8

test: Add unit test for addition in SimpleMathTest

test: Add unit test for addition in SimpleMathTest #8

Workflow file for this run

name: Java Pull Request Check
on:
push:
branches: [ main ]
paths:
- "packages/java/**"
pull_request:
branches: [ main ]
paths:
- "packages/java/**"
workflow_dispatch:
jobs:
checking-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
working-directory: ./packages/java
run: mvn clean install
- name: Run tests
working-directory: ./packages/java
run: mvn test