mirror of
https://github.com/simi/omniauth-facebook.git
synced 2022-11-09 12:32:45 -05:00
2e1090f8c0
* drop rbx specific gem * update supported Rubies in Readme
28 lines
545 B
YAML
28 lines
545 B
YAML
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"
|
|
- "3.0"
|
|
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
|