Skip to content

Commit

Permalink
Fix GitHub Actions failures and add Ruby 3.3 to CI (#359)
Browse files Browse the repository at this point in the history
* Fix typo that resulted in invalid workflow
* Add Ruby 3.3 to the CI matrix
* Install libcurl dependency
* Set fail-fast: false so all Rubies are tested
  • Loading branch information
mattbrictson committed Apr 29, 2024
1 parent cdea78c commit 91cee59
Showing 1 changed file with 5 additions and 12 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,11 @@ jobs:
name: "RSpec / Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
[
"2.3",
"2.4",
"2.5",
"2.6",
"2.7",
"3.0",
"3.1",
"3.2"
]
ruby: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "3.3"]
steps:
- run: sudo apt-get install libcurl4-openssl-dev
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
Expand All @@ -32,8 +24,9 @@ jobs:
name: "RSpec / Ruby 2.2"
runs-on: ubuntu-20.04
steps:
- run: sudo apt-get install libcurl4-openssl-dev
- uses: actions/checkout@v4
uses: ruby/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.2
bundler-cache: true
Expand Down

0 comments on commit 91cee59

Please sign in to comment.