Skip to content

Commit

Permalink
Add Ruby 3.3 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
timriley committed Feb 27, 2024
1 parent f6d98d1 commit c5c1ee7
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: ci

'on':
"on":
push:
paths:
- '.github/workflows/ci.yml'
- 'lib/**'
- '*.gemspec'
- 'spec/**'
- 'Rakefile'
- 'Gemfile'
- '.rubocop.yml'
- ".github/workflows/ci.yml"
- "lib/**"
- "*.gemspec"
- "spec/**"
- "Rakefile"
- "Gemfile"
- ".rubocop.yml"
pull_request:
branches:
- master
Expand All @@ -22,13 +22,14 @@ jobs:
fail-fast: false
matrix:
ruby:
- '3.2'
- '3.1'
- '3.0'
- "3.3"
- "3.2"
- "3.1"
- "3.0"
steps:
- uses: actions/checkout@v1
- name: Install package dependencies
run: '[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS'
run: "[ -e $APT_DEPS ] || sudo apt-get install -y --no-install-recommends $APT_DEPS"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit c5c1ee7

Please sign in to comment.