Skip to content

Commit

Permalink
* Update CI to run with latest ubuntu, test against ruby 3.2, update …
Browse files Browse the repository at this point in the history
…actions/checkout & codecov/codecov-action
  • Loading branch information
PikachuEXE committed Oct 18, 2023
1 parent 501abb3 commit 41c5dbb
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,20 @@ on:
jobs:
base:
name: Ruby ${{ matrix.ruby }}
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: ["2.6", "2.7", "3.0", "3.1"]
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

# This setup is not compatible with the way Travis CI was
# setup, so the cache will only work for the root folder.
Expand All @@ -30,9 +35,9 @@ jobs:
bundler-cache: true

- name: Rake
run: rake
run: bundle exec rake

- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v3

lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 41c5dbb

Please sign in to comment.