testing action

Signed-off-by: Rogério Peixoto <rogerio.peixoto@checkmarx.com>
This commit is contained in:
Rogério Peixoto
2021-10-16 11:05:14 +01:00
parent 2b43759b0b
commit 9a0478db28

View File

@ -3,13 +3,13 @@ name: Test KICS action
on: on:
workflow_dispatch: workflow_dispatch:
pull_request: pull_request:
types: [opened]
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- run: mkdir -p myoutput
- name: Test KICS action - name: Test KICS action
uses: ./ uses: ./
with: with:
@ -17,4 +17,8 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
timeout: 60 timeout: 60
verbose: true verbose: true
output_path: myoutput/
output_format: sarif
enable_comments: true enable_comments: true
- run: ls -la && ls -la myoutput
if: always()