Skip to content

Commit

Permalink
ci: use Ruby 2.7 & update actions (#35)
Browse files Browse the repository at this point in the history
For now I'm just bumping to v2.7 to unblock CI
  • Loading branch information
G-Rath authored Mar 1, 2024
1 parent 3497e20 commit 9332eae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ name: Ruby

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
- uses: actions/checkout@v3
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6.x
ruby-version: '2.7'
- name: Build and test with Rake
run: |
gem install bundler
Expand Down

0 comments on commit 9332eae

Please sign in to comment.