-
Notifications
You must be signed in to change notification settings - Fork 7
32 lines (30 loc) · 1.27 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: CI
# This runs every time a new commit is pushed to GitHub.
on: [pull_request, push]
jobs:
rspec:
runs-on: ubuntu-latest
# We run our `rspec` tests on many versions of Ruby to ensure compatibility.
strategy:
matrix:
ruby:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
- '3.0'
- 3.1
env:
BUNDLE_GEMFILE: Gemfile
name: "RSpec tests: Ruby ${{ matrix.ruby }}"
steps:
# This is an action from the public marketplace. We reference a specific commit as a security measure,
# but there are many ways to reference an action:
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-versioned-actions
- uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
with:
# This caches the gems that bundle installs so subsequent runs can be faster.
# It is what allows us to not run `gem install bundler` and `bundle install` in subsequent steps.
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- name: Run tests
run: bundle exec rspec