1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/.github/workflows/ci.yml
John Nunemaker b9c5515701
Merge pull request #732 from olleolleolle/patch-1
CI: use ruby/setup-ruby + bundler-cache
2021-09-29 08:50:01 -04:00

23 lines
542 B
YAML

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # Run "bundle install", and cache the result automatically.
- name: Run Rake
run: bundle exec rake