Skip to content

Commit

Permalink
Rename GitHub Actions workflow to CI and add brakeman step
Browse files Browse the repository at this point in the history
  • Loading branch information
scottohara committed Oct 24, 2024
1 parent 8a04f3a commit 61ccd65
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Build
name: CI

on:
push:
branches: master
branches: [master]

env:
# CodeClimate only shows coverage for the default branch
Expand Down Expand Up @@ -87,6 +87,9 @@ jobs:
- name: Lint
run: bundle exec rubocop

- name: Scan
run: bundle exec brakeman

- name: Test
run: bundle exec rake spec

Expand Down

0 comments on commit 61ccd65

Please sign in to comment.