Skip to content

Minor text updates in README.md #26

Minor text updates in README.md

Minor text updates in README.md #26

Workflow file for this run

name: library
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
strategy:
matrix:
erlang: [27, 28]
runs-on: ubuntu-latest
container:
image: erlang:${{ matrix.erlang }}
steps:
- name: Get the source code
uses: actions/checkout@v4
- name: Build the library
run: rebar3 compile
- name: Run the regression tests
run: rebar3 eunit