Skip to content

SECURITY-100248 - Adding security workflow file with SAST scan #25

SECURITY-100248 - Adding security workflow file with SAST scan

SECURITY-100248 - Adding security workflow file with SAST scan #25

Workflow file for this run

name: minitest
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.6.9, 2.7, 3.0, 3.1, 3.2]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Bundle Install
run: bundle install
- name: Run tests
run: rake