We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e0a5be commit cc17790Copy full SHA for cc17790
2 files changed
.github/workflows/audit.yml
@@ -0,0 +1,20 @@
1
+name: Gem audit
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Install system dependencies
10
+ run: |
11
+ sudo apt-get update
12
+ sudo apt-get install imagemagick
13
+ - name: Check out code
14
+ uses: actions/checkout@v6
15
+ - name: Install Ruby & gems
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ bundler-cache: true
19
+ - name: Audit gems
20
+ run: bundle exec bundle-audit check --update
.github/workflows/test.yml
@@ -64,5 +64,3 @@ jobs:
64
run: bundle exec rails test
65
- name: Run system tests
66
run: bundle exec rails test:system
67
- - name: Audit gems
68
- run: bundle exec bundle-audit check --update
0 commit comments