Skip to content

Commit

Permalink
Merge pull request #39 from CMU-313/deepscan-integration
Browse files Browse the repository at this point in the history
Deepscan Integration in Main Branch
  • Loading branch information
bencondemi authored Oct 31, 2024
2 parents 9c44e1f + 0b4e288 commit 01ab9ba
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/deepscan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: DeepScan Static Analysis

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
deepscan:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x' # Adjust to your project's Node.js version

- name: Install Dependencies
run: npm install

- name: Run DeepScan
uses: DeepScan/gh-action@v1
with:
api_key: ${{ secrets.DEEPSCAN_API_KEY }}

0 comments on commit 01ab9ba

Please sign in to comment.