-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (48 loc) · 1.29 KB
/
ruby.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
60
name: Ruby
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
[
ubuntu-latest,
ubuntu-20.04,
macos-latest,
macos-13,
macos-12,
windows-latest,
windows-2019,
]
ruby: ["3.0", "3.1", "3.2", "3.3"]
steps:
- uses: actions/checkout@v3
- name: Set timezone on Linux
if: contains(matrix.os, 'ubuntu')
run: sudo timedatectl set-timezone 'America/New_York'
- name: Set timezone on macOS
if: contains(matrix.os, 'macos')
run: sudo systemsetup -settimezone America/New_York
- name: Set timezone on Windows
if: contains(matrix.os, 'windows')
run: tzutil /s "Eastern Standard Time"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Update RubyGems
run: gem update --system
- name: Disable bundler frozen setting
run: bundle config set frozen false
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake