Skip to content

Commit 2b52824

Browse files
committed
Github Actions
1 parent 3ffe69c commit 2b52824

File tree

2 files changed

+29
-27
lines changed

2 files changed

+29
-27
lines changed

.github/workflows/build.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Tests
2+
on:
3+
push:
4+
branches:
5+
- master
6+
- "*-stable"
7+
- "*/ci-check"
8+
pull_request:
9+
10+
jobs:
11+
tests:
12+
name: Tests
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
ruby: [2.6, 2.7, 3.0]
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v2
21+
22+
- name: Setup Ruby
23+
uses: ruby/setup-ruby@v1
24+
with:
25+
ruby-version: ${{ matrix.ruby }}
26+
bundler-cache: true
27+
28+
- name: Run tests
29+
run: bundle exec rake

.travis.yml

-27
This file was deleted.

0 commit comments

Comments
 (0)