Fix the way sessions are computed so that backup gantt plot works #300
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: brakeman | |
| on: [push] | |
| jobs: | |
| scan_ruby: | |
| env: | |
| app-directory: src/snapshots-app | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| working-directory: ${{env.app-directory}} | |
| ruby-version: .ruby-version | |
| bundler-cache: true | |
| - name: Scan for common Rails security vulnerabilities using static analysis | |
| run: | | |
| cd ${{env.app-directory}} | |
| bin/brakeman --no-pager |