erlware_commons/.github/workflows/main.yml
Ariel Otilibili 1a08e33b83 Dropped minor versions in GitHub actions
Lastest minor in given version will be taken.

Signed-off-by: Ariel Otilibili <otilibil@eurecom.fr>
2024-11-18 21:25:19 +01:00

31 lines
577 B
YAML

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', '25', '23']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Compile
run: rebar3 compile
- name: Dialyzer
run: rebar3 as test dialyzer
- name: EUnit
run: TERM=xterm rebar3 eunit