Skip to content

Commit 962ce11

Browse files
authored
Merge pull request #29 from zendesk/bquorning.github-actions
Run tests on GitHub Actions, not Travis
2 parents bf3647d + e4e6eb8 commit 962ce11

File tree

3 files changed

+32
-26
lines changed

3 files changed

+32
-26
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: CI
3+
on: push
4+
jobs:
5+
specs:
6+
runs-on: ubuntu-latest
7+
8+
strategy:
9+
matrix:
10+
ruby-version:
11+
- 2.4
12+
- 2.5
13+
- 2.6
14+
gemfile:
15+
- rails4.2
16+
- rails5.0
17+
- rails5.1
18+
- rails5.2
19+
- rails6.0
20+
exclude:
21+
- ruby-version: 2.4
22+
gemfile: rails6.0
23+
env:
24+
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
25+
steps:
26+
- uses: zendesk/checkout@v2
27+
- uses: zendesk/setup-ruby@v1
28+
with:
29+
ruby-version: ${{ matrix.ruby-version }}
30+
bundler-cache: true
31+
- run: bundle exec rake test

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Migration Tools [![Build Status](https://secure.travis-ci.org/morten/migration_tools.png)](http://travis-ci.org/zendesk/migration_tools)
1+
# Migration Tools [![Build Status](https://github.com/zendesk/migration_tools/workflows/CI/badge.svg)](https://github.com/zendesk/migration_tools/actions?query=workflow%3ACI)
22

33
Rake tasks for grouping migrations.
44

0 commit comments

Comments
 (0)