Add .github/workflows/workflow.yml #1
This file contains 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] | |
runs-on: ubuntu-latest | |
container: | |
image: erlang:${{ matrix.erlang }} | |
steps: | |
- name: Get the source code | |
uses: actions/checkout@v4 | |
- name: Build the library | |
run: make | |
- name: Run the regression tests | |
run: make eunit |