1
0
Fork 0
mirror of https://github.com/mperham/connection_pool synced 2023-03-27 23:22:21 -04:00
connection_pool/.github/workflows/ci.yml

27 lines
588 B
YAML
Raw Normal View History

2021-04-12 07:46:33 -04:00
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
2021-04-12 07:46:33 -04:00
strategy:
fail-fast: false
matrix:
ruby: ["2.4", "2.5", "2.6", "2.7", "3.0", "jruby"]
experimental: [false]
include:
- ruby: "truffleruby"
experimental: true
2021-04-12 07:46:33 -04:00
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