Change to Rebar3 build system #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Library | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| branches: ["master"] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| erlang: [24, 25, 26, 27] | |
| 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 |