Skip to content

Correctly handle case where replica exits in handle_continue. #658

Correctly handle case where replica exits in handle_continue.

Correctly handle case where replica exits in handle_continue. #658

Workflow file for this run

name: Erlang CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
erlang_version:
- "26"
steps:
- name: CHECKOUT
uses: actions/checkout@v2
- name: CONFIGURE ERLANG
uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.erlang_version }}
- name: BUILD
run: make
- name: CHECK
run: make check
build-bazel:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
otp_major:
- "24"
- "25"
- "26"
steps:
- name: CHECKOUT
uses: actions/checkout@v2
- name: TEST
run: |
bazelisk test //... --config=rbe-${{ matrix.otp_major }}