Skip to content

Issue 35 add curicuit2 opmodes #187

Issue 35 add curicuit2 opmodes

Issue 35 add curicuit2 opmodes #187

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@v4
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@v4
# 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: |
CP_TEST="./SystaRESTServer/bin"
for jarfile in ./SystaRESTServer/lib/*.jar; do
CP_TEST="$CP_TEST:$jarfile"
done
ls -al ./SystaRESTServer/bin/
java -jar .github/workflows/junit-platform-console-standalone-1.13.4.jar -cp "$CP_TEST" --scan-classpath -reports-dir='junit-reports/'
# Publish the test results
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: always() # always run even if the previous step fails
with:
token: ${{ secrets.GITHUB_TOKEN }}
report_paths: 'junit-reports/TEST-*.xml'