Skip to content

Bump rexml from 3.2.6 to 3.2.8 (#244) #252

Bump rexml from 3.2.6 to 3.2.8 (#244)

Bump rexml from 3.2.6 to 3.2.8 (#244) #252

Workflow file for this run

name: Specs
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2']
redis: ['6.2', '7.2']
name: Ruby ${{ matrix.ruby }}, Redis ${{ matrix.redis }}
services:
redis:
image: redis:${{ matrix.redis }}
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
steps:
- uses: actions/checkout@v3
- name: Set up ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # install and cache gems
- name: Test
run: bundle exec rake spec
env:
STOPLIGHT_REDIS_URL: "redis://127.0.0.1:6379/0"
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: ruby-${{ matrix.ruby }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true