Skip to content

feat: add computed fields #1405

feat: add computed fields

feat: add computed fields #1405

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: ['26', '27']
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