Skip to content

Commit 34ac1b9

Browse files
authored
Merge pull request #21 from blocknotes/github-actions-support-ruby3
Github actions: enable ruby 3 for specs
2 parents c7fb04f + cd46769 commit 34ac1b9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/specs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name: Specs
33

44
on:
55
push:
6-
branches: [master]
6+
branches: [develop, master]
77
pull_request:
8-
branches: [master]
8+
branches: [develop, master]
99

1010
jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313

1414
strategy:
1515
matrix:
16-
ruby: ['2.5', '2.6', '2.7']
16+
ruby: ['2.6', '2.7', '3.0']
1717

1818
steps:
1919
- name: Checkout
@@ -26,7 +26,7 @@ jobs:
2626
bundler-cache: true
2727

2828
- name: Run tests
29-
run: bundle exec rake
29+
run: bin/rspec --profile
3030

3131
- name: Archive screenshots for failed tests
3232
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)