Skip to content

Commit 8b152cd

Browse files
authored
Merge pull request #9 from blocknotes/github-actions
GitHub actions
2 parents a825472 + 8b264da commit 8b152cd

2 files changed

Lines changed: 26 additions & 33 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/specs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Specs
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
ruby: ['2.5', '2.6', '2.7']
16+
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v2
20+
- name: Set up Ruby
21+
uses: ruby/setup-ruby@v1
22+
with:
23+
ruby-version: ${{ matrix.ruby }}
24+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
25+
- name: Run tests
26+
run: bundle exec rake

0 commit comments

Comments
 (0)