Skip to content

Potential fix for code scanning alert no. 1: Workflow does not contai… #34

Potential fix for code scanning alert no. 1: Workflow does not contai…

Potential fix for code scanning alert no. 1: Workflow does not contai… #34

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '3.0'
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake