fix: fast fail on invalid ssl options #369
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: Run test case | |
on: [push, pull_request] | |
jobs: | |
run_test_case: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
otp: | |
- erlang:23.0.3 | |
- erlang:22.3 | |
- erlang:21.3 | |
container: | |
image: ${{ matrix.otp }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Code dialyzer | |
run: | | |
# check validity of appup file | |
erl -noshell -eval "{ok,_}=file:consult('src/esockd.appup.src')" -s init stop | |
make xref | |
make dialyzer | |
- name: Run tests | |
run: | | |
make eunit | |
make ct | |
make cover | |
- name: Coveralls | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
make coveralls | |
- uses: actions/upload-artifact@v1 | |
if: failure() | |
with: | |
name: logs | |
path: _build/test/logs |