-
-
Notifications
You must be signed in to change notification settings - Fork 74
28 lines (28 loc) · 680 Bytes
/
test.yml
File metadata and controls
28 lines (28 loc) · 680 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
name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "3.2"
- "3.4"
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: browser-actions/setup-geckodriver@latest
with:
geckodriver-version: "0.32.2"
- uses: browser-actions/setup-firefox@v1
with:
firefox-version: "134.0.1"
- uses: coactions/setup-xvfb@v1
with:
run: |
bundle exec rake spec