Skip to content

Commit aa82cd9

Browse files
authored
Merge pull request #132 from olleolleolle/patch-1
CI: Add Ruby 3.3, 3.4 - and trust setup-ruby to bundle install
2 parents 5a834ab + d04864d commit aa82cd9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CI
2-
on: [push]
2+
on: [push, pull_request, workflow_dispatch]
33

44
jobs:
55
test:
@@ -12,17 +12,16 @@ jobs:
1212

1313
matrix:
1414
os: [ubuntu]
15-
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2]
15+
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3, 3.4]
1616

1717
runs-on: ${{ matrix.os }}-latest
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

2222
- uses: ruby/setup-ruby@v1
2323
with:
2424
bundler-cache: true
2525
ruby-version: ${{ matrix.ruby }}
2626

27-
- run: bundle install
2827
- run: bundle exec rspec

0 commit comments

Comments
 (0)