We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59a8d4 commit ba1f296Copy full SHA for ba1f296
1 file changed
.github/workflows/tests.yml
@@ -35,3 +35,18 @@ jobs:
35
if: matrix.ruby == '3.4'
36
- run: bundle exec rake gemspec
37
- run: bundle exec rake gem:package
38
+
39
+ quality:
40
+ name: Quality Checks (Ruby 3.4)
41
+ runs-on: ubuntu-latest
42
+ steps:
43
+ - uses: actions/checkout@v4
44
+ - uses: ruby/setup-ruby@v1
45
+ with:
46
+ ruby-version: "3.4"
47
+ bundler-cache: true
48
+ - name: Install Semgrep
49
+ run: python -m pip install semgrep
50
+ - run: bundle exec rake lint
51
+ - run: bundle exec rake doc:check
52
+ - run: bundle exec rake security
0 commit comments