Skip to content

Commit

Permalink
add test to cxProject field
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelfreitas93 committed May 14, 2020
1 parent 3181633 commit 4c15d29
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/cx-sast-scan-cxproject-field.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Checkmarx SAST Scan - Test cxProject field

on:
push:
branches:
- master
jobs:
cx-github-actions:
name: Test cxProject field
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Checkmarx SAST Scan
uses: checkmarx-ts/[email protected]
with:
cxAction: Scan
cxProject: checkmarx-github-action
cxServer: ${{ secrets.CX_SERVER }}
cxUsername: ${{ secrets.CX_EMAIL }}
cxPassword: ${{ secrets.CX_PASSWORD }}
cxTeam: ${{ secrets.CX_TEAM }}
cxPreset: All
cxLog: log.log
- name: Upload artifact
uses: actions/[email protected]
with:
name: log.log
path: log.log

0 comments on commit 4c15d29

Please sign in to comment.