Build only on the last 3 versions of OTP #21
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: Erlang CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
erlang: [24, 25, 26] | |
container: | |
image: erlang:${{ matrix.erlang }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Compile | |
run: make compile | |
- name: Run xref | |
run: make xref | |
- name: Run eunit | |
run: make eunit | |
- name: Run dialyzer | |
run: make dialyzer |