Skip to content

Update README.md

Update README.md #118

Workflow file for this run

# this action will run JUnit tests for the SystaREST server
name: JUnit
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "buildAndTest"
buildAndTest:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/setup-java@v3
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '11'
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: build project with tests
run: |
cd ./SystaRESTServer
sh build_test.sh
# Runs a single command using the runners shell
- name: run JUnit tests
run: |
ls -al ./SystaRESTServer/bin/
java -jar .github/workflows/junit-platform-console-standalone-1.8.1.jar -cp ./SystaRESTServer/bin/ --scan-classpath -reports-dir='junit-reports/'
# Publish the test results
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
with:
token: ${{ secrets.GITHUB_TOKEN }}
report_paths: 'junit-reports/TEST-*.xml'