Add option for jitter in retry delays #71
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: RSpec | |
on: | |
- push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run tests | |
run: | | |
cd script | |
docker-compose up -d | |
docker exec testrunner bash -c "cd src && bundle install && bundle exec rspec && exit" | |
- name: Code Coverage | |
uses: paambaati/codeclimate-action@v2.7.5 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
prefix: '/src' | |
coverageLocations: | | |
${{github.workspace}}/coverage/.resultset.json:simplecov | |