-
-
Notifications
You must be signed in to change notification settings - Fork 92
44 lines (39 loc) · 935 Bytes
/
tests.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
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
tests:
name: Tests
strategy:
fail-fast: false
matrix:
ruby: [2.7, "3.0", 3.1, 3.2, 3.3]
runs-on: ubuntu-latest
env:
FERRUM_PROCESS_TIMEOUT: 25
FERRUM_DEFAULT_TIMEOUT: 15
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Setup Chrome
uses: browser-actions/setup-chrome@latest
with:
chrome-version: stable
- name: Run tests
run: |
mkdir -p /tmp/cuprite
bundle exec rake
- name: Archive artifacts
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: artifacts-ruby-v${{ matrix.ruby }}
path: /tmp/cuprite/