Skip to content

ZooKeeper Lock Working #213

ZooKeeper Lock Working

ZooKeeper Lock Working #213

Workflow file for this run

name: Tests
on:
push:
pull_request:
branches:
- master
jobs:
build:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.1.9
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.1.9'
- name: Bundle Install
run: bundle install
- name: Run tests
run: rake test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}