-
Notifications
You must be signed in to change notification settings - Fork 204
55 lines (45 loc) · 1.02 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
name: "CI Tests"
on:
push:
branches: "main"
pull_request:
branches: "*"
jobs:
build:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
ruby: ["3.2", "3.3"]
rails: ["7.0", "7.1", "7.2"]
include:
- ruby: "3.3"
rails: "8.0"
- ruby: "3.4"
rails: "8.0"
- ruby: "3.4"
rails: "main"
env:
RAILS_ENV: "test"
RAILS_VERSION: "${{ matrix.rails }}"
steps:
- uses: "actions/checkout@v4"
- name: "Install NodeJS"
uses: "actions/setup-node@v4"
with:
node-version: "20.x"
- name: "Install Ruby ${{ matrix.ruby }}"
uses: "ruby/setup-ruby@v1"
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- name: "Install Webdriver"
run: |
sudo apt-get update
sudo apt-get -yqq install chromium-browser
- name: "Run Setup"
run: |
bin/setup
- name: "Run Tests"
run: |
bin/rake