feat: add proxy support, drop hot-upgrade #172
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: 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: setup tinyproxy | |
run: | |
sudo apt update && sudo apt install -yq tinyproxy | |
- name: Compile | |
run: rebar3 compile | |
- name: Run tests | |
run: make eunit | |
- name: Run dialyzer | |
run: make dialyzer | |
- name: Ensure version consistency | |
run: ./check_vsns.escript | |
- name: Ensure style | |
run: ./check-style.sh |