Skip to content

Commit

Permalink
updates to action
Browse files Browse the repository at this point in the history
  • Loading branch information
thavelock committed Oct 19, 2023
1 parent 7630b5b commit 3cea4fc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/code-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Snyk Code Test

on:
workflow_dispatch:
workflow_call:

jobs:
code-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master

- name: Setup Snyk Action
uses: snyk/actions/setup@master

- name: Test Code with Snyk
run: snyk code test
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 comments on commit 3cea4fc

Please sign in to comment.