Skip to content

Added a retry logic and a service availability check function for high availability. #232

Added a retry logic and a service availability check function for high availability.

Added a retry logic and a service availability check function for high availability. #232

Workflow file for this run

name: coverage
on: [push, pull_request]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 3.0
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
- name: Build and test with Rake
run: |
gem install bundler
bundle install
bundle exec rake
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}