Skip to content

Commit fa5ca67

Browse files
authored
Merge pull request #27 from intercom/ci
Switch from Travis CI to GitHub Actions Let's get CI up and running again.
2 parents 65f9896 + ecbe6a9 commit fa5ca67

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
fail-fast: false
11+
12+
matrix:
13+
ruby-version:
14+
- 2.3
15+
- 2.4
16+
- 2.5
17+
- 2.6
18+
- 2.7
19+
- "3.0"
20+
- 3.1
21+
- 3.2
22+
- 3.3
23+
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: ruby/setup-ruby@v1
27+
with:
28+
ruby-version: ${{ matrix.ruby-version }}
29+
bundler-cache: true
30+
- run: bundle exec rspec

.travis.yml

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

omniauth-intercom.gemspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Gem::Specification.new do |spec|
1919
spec.require_paths = ["lib"]
2020
spec.add_runtime_dependency 'omniauth-oauth2', '>= 1.2'
2121

22-
spec.add_development_dependency "bundler", "~> 1.12"
2322
spec.add_development_dependency "rake", "~> 10.0"
2423
spec.add_development_dependency "rspec", "~> 3.0"
2524
spec.add_development_dependency "rack", "~> 1.6"

0 commit comments

Comments
 (0)