Skip to content

Zombie detector

Zombie detector #182

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:
otp:
- 26.1
- 25.3
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch tags
run: git fetch --tags
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: 3
- name: Ensure style
run: ./check-style.sh
- name: setup tinyproxy
run: sudo ./test/scripts/setup_tinyproxy.sh
- name: Compile
run: rebar3 compile
- name: Run tests
run: make eunit
- name: Run dialyzer
run: make dialyzer