Skip to content

Commit

Permalink
adding ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaniac89 committed Jul 27, 2023
1 parent 425bc9f commit 068edb9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/snyk_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,15 @@ jobs:
run: |
snyk monitor --target-name="my_target_from_GH"
- name: run tests
- name: run os test
if: always()
run: |
snyk test --target-name="my_os_target_from_GH" --json-file-output=os_results.json
- name: run code test
if: always()
run: |
snyk test --target-name="my_os_target_from_GH" --json-output-file=os_results.json
snyk code test --report --target-name="my_code_target_from_GH" --json-output-file=code_results.json
snyk code test --report --target-name="my_code_target_from_GH" --json-file-output=code_results.json
- name: run html
if: always()
Expand Down

0 comments on commit 068edb9

Please sign in to comment.