Skip to content

Commit f194956

Browse files
committed
chore: add test workflow
1 parent 6c30d42 commit f194956

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: "ubuntu-latest"
8+
continue-on-error: ${{ matrix.experimental }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
ruby_version: ["2.2", "2.7"]
13+
experimental: [false]
14+
include:
15+
- ruby_version: "3.0"
16+
experimental: true
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: ruby/setup-ruby@v1
20+
with:
21+
ruby-version: ${{ matrix.ruby_version }}
22+
- run: "bundle install"
23+
- run: "bundle exec rake"

0 commit comments

Comments
 (0)