Skip to content

add unit tests and github action for testing #3

add unit tests and github action for testing

add unit tests and github action for testing #3

Workflow file for this run

name: Run JUnit Tests
on: ['pull_request']
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Gradle
run: ./gradlew test
- name: Upload test results
uses: actions/upload-artifact@v2
with:
name: test-results
path: build/test-results