Skip to content

fix: make it compile on otp 28 #1438

fix: make it compile on otp 28

fix: make it compile on otp 28 #1438

Workflow file for this run

name: Run test case
on: [push, pull_request]
jobs:
run_test_case:
runs-on: ubuntu-latest
strategy:
matrix:
erlang-vsn: ['27', '28']
container:
image: erlang:${{ matrix.erlang-vsn }}
steps:
- uses: actions/checkout@v4
- name: Code dialyzer
run: |
make dialyzer
rm -f rebar.lock
- name: Run tests
run: |
make eunit
rm -f rebar.lock
make cover
- uses: actions/upload-artifact@v4
with:
name: cover-${{ matrix.erlang-vsn }}
path: _build/test/cover