-
Notifications
You must be signed in to change notification settings - Fork 201
47 lines (38 loc) · 975 Bytes
/
Copy pathtests.yml
File metadata and controls
47 lines (38 loc) · 975 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: "CI Tests"
on:
push:
branches:
- main
pull_request:
branches: "*"
jobs:
build:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
ruby: ["3.3", "3.4", "4.0"]
rails: ["7.2", "8.0", "8.1"]
include:
- ruby: "4.0"
rails: "main"
env:
RAILS_ENV: "test"
RAILS_VERSION: "${{ matrix.rails }}"
steps:
- uses: "actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1" # v7.0.1
- name: "Install NodeJS"
uses: "actions/setup-node@820762786026740c76f36085b0efc47a31fe5020" # v7.0.0
with:
node-version: "20.x"
- name: "Install Ruby ${{ matrix.ruby }}"
uses: "ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b" # v1.321.0
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true
- name: "Run Setup"
run: |
bin/setup
- name: "Run Tests"
run: |
bin/rake