fix: use erlang alias for send_sync #253
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: wolff | |
on: | |
pull_request: | |
branches: | |
- main | |
- main-* | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
otp: | |
- '26.2' | |
- '25.3' | |
kafka: | |
- '2.4' | |
- '1.1' | |
- '0.11' | |
runs-on: ubuntu-20.04 | |
steps: | |
# Setup | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cache Hex packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/rebar3/hex/hexpm/packages | |
key: ${{ runner.os }}-hex-${{ hashFiles(format('{0}{1}', github.workspace, '/rebar.lock')) }} | |
restore-keys: | | |
${{ runner.os }}-hex- | |
- name: Cache Dialyzer PLTs | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/rebar3/rebar3_*_plt | |
key: ${{ runner.os }}-dialyzer-${{ hashFiles(format('{0}{1}', github.workspace, '/rebar.config')) }} | |
restore-keys: | | |
${{ runner.os }}-dialyzer- | |
# Install Erlang | |
- name: Install Erlang/OTP | |
uses: erlef/setup-beam@v1 | |
with: | |
version-type: strict | |
otp-version: ${{matrix.otp}} | |
rebar3-version: '3.20.0' | |
- name: Set up Docker Compose | |
run: | | |
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
sudo chmod +x /usr/local/bin/docker-compose | |
# Check versions and syntax of app and appup | |
- name: Ensure version consistency | |
run: ./check-vsns.escript | |
# Compile | |
- name: Compile | |
run: | | |
rebar3 do compile, dialyzer, edoc, xref | |
# Tests | |
- name: Run tests | |
run: | | |
./start-kafka.sh | |
make eunit || (docker-compose logs; false) |