Skip to content

Merge pull request #38 from duosecurity/update_versions_nov_2023 #46

Merge pull request #38 from duosecurity/update_versions_nov_2023

Merge pull request #38 from duosecurity/update_versions_nov_2023 #46

Workflow file for this run

name: Ruby CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ruby-ci:
name: Ruby CI - test
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.0, 3.1, 3.2]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Test
run: rake