Skip to content

Automated: Add Semgrep Github action #21

Automated: Add Semgrep Github action

Automated: Add Semgrep Github action #21

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.4', '2.5', '2.6', '2.7']
name: Ruby ${{ matrix.ruby }} CI
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rubocop
- run: bundle exec rake test