1
0
Fork 0
mirror of https://github.com/simi/omniauth-facebook.git synced 2022-11-09 12:32:45 -05:00

Replace Travis CI with GitHub Actions (#350)

Both on PR and push.
This commit is contained in:
Olle Jonsson 2021-01-12 17:57:31 +01:00 committed by GitHub
parent 005ebb443f
commit e64dc73e61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 6 deletions

27
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Ruby
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- "2.5"
- "2.6"
- "2.7"
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake

View file

@ -1,6 +0,0 @@
language: ruby
cache: bundler
rvm:
- 2.7
- 2.6
- 2.5