Skip to content

Moved ec_talk tests into separate file #86

Moved ec_talk tests into separate file

Moved ec_talk tests into separate file #86

Workflow file for this run

name: Integration tests
on:
pull_request:
branches:
- 'master'
push:
branches:
- 'master'
jobs:
build:
name: OTP ${{ matrix.otp_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
container:
image: erlang:${{matrix.otp_version}}
strategy:
matrix:
otp_version: ['27.0', '25.3', '25.2', '23.2']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Compile
run: rebar3 compile
- name: Dialyzer
run: rebar3 as test dialyzer
- name: EUnit
run: TERM=xterm rebar3 eunit