-
-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (47 loc) · 1.3 KB
/
tests.yml
File metadata and controls
49 lines (47 loc) · 1.3 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
ruby_test:
name: Ruby Test Action
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [3.1.4, 3.2.3, 3.3.0]
rails-version: ['6_0', '6_1', '7_0', '7_1']
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile
steps:
- uses: actions/checkout@master
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- uses: actions/cache@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Set up Redis 4
uses: supercharge/redis-github-action@1.2.0
with:
redis-version: 4
- name: Install sqlite headers
run: |
sudo apt-get update
sudo apt-get install libsqlite3-dev
- name: Bundle install
run: |
gem install bundler
gem update --system
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run ruby tests
run: |
bundle exec rake test