Skip to content

Commit 3be23fd

Browse files
authored
Merge pull request #6 from wantedly/qnighy/gha
Migrate to GitHub Actions
2 parents 802a7aa + 6c48f8f commit 3be23fd

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
strategy:
12+
matrix:
13+
ruby: ["3.2"]
14+
gemfile: ["Gemfile"]
15+
16+
env:
17+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
18+
19+
steps:
20+
- uses: actions/checkout@v3
21+
- uses: ruby/setup-ruby@v1
22+
with:
23+
ruby-version: ${{ matrix.ruby }}
24+
bundler-cache: true
25+
- run: bundle exec rake

.travis.yml

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

0 commit comments

Comments
 (0)