Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 736 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 736 Bytes

brakeman-action

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.

Usage

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"

License

This project is released under the MIT License.