mirror of
https://github.com/mperham/connection_pool
synced 2023-03-27 23:22:21 -04:00
22 lines
447 B
YAML
22 lines
447 B
YAML
|
name: CI
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
ruby: ["2.4", "2.5", "2.6", "2.7", "3.0", "jruby", "truffleruby"]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: ruby/setup-ruby@v1
|
||
|
with:
|
||
|
ruby-version: ${{matrix.ruby}}
|
||
|
bundler-cache: true
|
||
|
|
||
|
- name: Run tests
|
||
|
timeout-minutes: 5
|
||
|
run: ${{matrix.env}} bundle exec rake
|