Skip to content

Commit

Permalink
feat: add codeql workflow (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccarro30 committed Dec 15, 2022
1 parent 7510c1f commit def93d8
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "CodeQL Workflow"

on:
pull_request:
branches: [ "master" ]
schedule:
- cron: "0 16 * * *"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'ruby' ]

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Run CodeQL Scan
uses: github/codeql-action/analyze@v2

0 comments on commit def93d8

Please sign in to comment.