Skip to content

Update otp & rebar in github actions. #55

Update otp & rebar in github actions.

Update otp & rebar in github actions. #55

Workflow file for this run

on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
jobs:
test:
runs-on: ubuntu-latest
name: Tests on OTP ${{matrix.otp}} with rebar v${{matrix.rebar3}}
strategy:
matrix:
otp: ['26', '25']
rebar3: ['3.23.0']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: ${{matrix.rebar3}}
- name: Common Test tests
run: rebar3 ct --sname ct
- name: Dialyzer
run: rebar3 dialyzer