We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a326c5 + 383775f commit bcc8693Copy full SHA for bcc8693
.github/workflows/tests.yml
@@ -13,15 +13,9 @@ jobs:
13
strategy:
14
fail-fast: false
15
matrix:
16
- ruby: ["3.0", "3.1", "3.2"]
17
- rails: ["6.1", "7.0", "7.1"]
+ ruby: ["3.1", "3.2", "3.3"]
+ rails: ["6.1", "7.0", "7.1", "7.2"]
18
include:
19
- - ruby: "3.1"
20
- rails: "7.2"
21
- - ruby: "3.2"
22
23
- - ruby: "3.3"
24
25
- ruby: "3.3"
26
rails: "main"
27
@@ -41,17 +35,7 @@ jobs:
41
35
uses: "ruby/setup-ruby@v1"
42
36
with:
43
37
ruby-version: "${{ matrix.ruby }}"
44
-
45
- - name: "Generate lockfile"
46
- run: |
47
- bundle config path vendor/bundle
48
- bundle lock
49
50
- - name: "Cache Ruby dependencies"
51
- uses: "actions/cache@v4"
52
- with:
53
- path: "vendor/bundle"
54
- key: bundle-${{ hashFiles('Gemfile.lock') }}
38
+ bundler-cache: true
55
39
56
40
- name: "Install Webdriver"
57
run: |
0 commit comments