Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Automated: Add Semgrep github action #60

Automated: Add Semgrep github action

Automated: Add Semgrep github action #60

Workflow file for this run

name: Ruby
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.5', '2.6', '2.7']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Build and test with Rake
run: |
gem install bundler -v 2.3.26
bundle install --jobs 4 --retry 3
bundle exec rake