forked from reidmorrison/rails_semantic_logger
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.23 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: build
on:
- push
- pull_request
jobs:
test:
name: "Test: Rails ${{ matrix.rails }} on Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- rails: "6.0"
ruby: "2.7"
- rails: "6.1"
ruby: "2.7"
- rails: "6.1"
ruby: "3.0"
- rails: "6.1"
ruby: "3.1"
- rails: "6.1"
ruby: "3.2"
- rails: "7.0"
ruby: "3.1"
- rails: "7.0"
ruby: "3.2"
- rails: "7.1"
ruby: "3.1"
- rails: "7.1.1"
ruby: "3.2"
- rails: "7.1"
ruby: "3.2"
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
DISPLAY: ":99.0"
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Gemfile
run: echo $BUNDLE_GEMFILE
- name: Ruby Version
run: ruby --version
- name: Run Tests
run: bundle exec rake test