This action runs Brakeman against a repository's source code to find security vulnerabilities.
Brakeman is a free vulnerability scanner specifically designed for Ruby on Rails applications. It statically analyzes Rails application code to find security issues at any stage of development.
name: Test pull requests
on:
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Brakeman code scanning
uses: standardnotes/brakeman-action@v1.0.0
with:
options: "--color -q"
This project is released under the MIT License.