Test #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sec3 Pro Audit | |
# update to match your branch names and requirements | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: "*" | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check-out the repository | |
uses: actions/checkout@v2 | |
- name: Sec3 Pro Audit | |
continue-on-error: true # set to true if you don't want to fail jobs | |
uses: sec3dev/pro-action@v1 | |
with: | |
sec3-token: ${{ secrets.SEC3_TOKEN }} | |
path: programs/token-messenger-minter | |
- name: Upload Sarif Report | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: sec3-report.sarif |