Skip to content

Commit

Permalink
Merge pull request #21 from blocknotes/github-actions-support-ruby3
Browse files Browse the repository at this point in the history
Github actions: enable ruby 3 for specs
  • Loading branch information
blocknotes authored Sep 13, 2021
2 parents c7fb04f + cd46769 commit 34ac1b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ name: Specs

on:
push:
branches: [master]
branches: [develop, master]
pull_request:
branches: [master]
branches: [develop, master]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
ruby: ['2.5', '2.6', '2.7']
ruby: ['2.6', '2.7', '3.0']

steps:
- name: Checkout
Expand All @@ -26,7 +26,7 @@ jobs:
bundler-cache: true

- name: Run tests
run: bundle exec rake
run: bin/rspec --profile

- name: Archive screenshots for failed tests
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 34ac1b9

Please sign in to comment.