Merge pull request #765 from ariel-anieli/pr-self-refs #5
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: build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ci: | |
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
container: | |
image: erlang:${{matrix.otp_vsn}} | |
strategy: | |
matrix: | |
otp_vsn: [19.3, 20.3, 21.3, 22.3, 23.3, 24.0] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: export | |
- run: make rebar3-install | |
- run: make warnings | |
- run: make check | |
- run: make eunit |