forked from adamwiggins/clockwork
-
Notifications
You must be signed in to change notification settings - Fork 66
29 lines (27 loc) · 709 Bytes
/
tests.yml
File metadata and controls
29 lines (27 loc) · 709 Bytes
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
name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ "3.2", "3.3", "3.4", "4.0" ]
active_support: [ "8.0", "8.1" ]
name: Ruby ${{ matrix.ruby }} - ActiveSupport ${{ matrix.active_support }}
env:
ACTIVE_SUPPORT_VERSION: ${{ matrix.active_support }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Tests
env:
RUBYOPT: "-W:deprecated" # Show Ruby's deprecation warnings
run: |
bundle exec rake