add test of domain_socket support (#94) #86
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 | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build: | |
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
otp_version: ['25', '26', '27'] | |
rebar3_version: ['3.23'] | |
os: [ubuntu-22.04] | |
env: | |
OTP_VERSION: ${{ matrix.otp_version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up postgres | |
run: docker compose up -d | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp_version }} | |
rebar3-version: ${{ matrix.rebar3_version }} | |
- uses: actions/cache@v4 | |
name: Cache | |
with: | |
path: | | |
_build | |
key: ${{ runner.os }}-build-${{ matrix.otp_version }}-${{ hashFiles(format('rebar.lock')) }}-3 | |
restore-keys: | | |
${{ runner.os }}-build-${{ matrix.otp_version }}-${{ hashFiles(format('rebar.lock')) }}-3 | |
- name: Compile | |
run: rebar3 compile | |
- name: Common Test tests | |
run: rebar3 ct --cover | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v2 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: '_build/test/logs/*/junit_report.xml' | |
- name: XRef | |
run: rebar3 xref | |
- name: Covertool | |
if: ${{ always() }} | |
run: rebar3 covertool generate | |
- uses: codecov/codecov-action@v2 | |
if: ${{ always() }} | |
with: | |
file: _build/test/covertool/pgo.covertool.xml | |
env_vars: OTP_VERSION | |
dialyzer: | |
name: Dialyze on OTP ${{ matrix.otp_version }} and ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
otp_version: ['27'] | |
rebar3_version: ['3.23'] | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: erlef/setup-beam@v1 | |
with: | |
otp-version: ${{ matrix.otp_version }} | |
rebar3-version: ${{ matrix.rebar3_version }} | |
- uses: actions/cache@v4 | |
name: Cache | |
with: | |
path: | | |
_build | |
key: ${{ runner.os }}-build-${{ matrix.otp_version }}-${{ hashFiles(format('rebar.lock')) }}-3 | |
restore-keys: | | |
${{ runner.os }}-build-${{ matrix.otp_version }}-${{ hashFiles(format('rebar.lock')) }}-3 | |
- name: Compile | |
run: rebar3 compile | |
- name: Dialyzer | |
run: rebar3 dialyzer |