Skip to content

Commit

Permalink
Add GitHub action for security check
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiencarceles committed Feb 22, 2024
1 parent 1963b5b commit 82c1c86
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Security check with Brakeman
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Ruby and install gems
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Run Brakeman
run: bundle exec brakeman -z

0 comments on commit 82c1c86

Please sign in to comment.