Skip to content

feat: supports Matches and NotMatches operators in security conditions. #119

feat: supports Matches and NotMatches operators in security conditions.

feat: supports Matches and NotMatches operators in security conditions. #119

Workflow file for this run

name: Examples
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
checks: write
contents: write
steps:
- uses: actions/checkout@v3
- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Test JUnit example project
working-directory: ./examples/junit-sample
run: ./mvnw test
- name: Publish Unit Test Results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/surefire-reports/**/*.xml"
comment_mode: off