Yep #61
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 | |
container: | |
image: lpgauth/erlang-scylla:26.2.2-5.2-amd64 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Start Scylla | |
run: /usr/bin/scylla --log-to-syslog 0 --log-to-stdout 1 --default-log-level info --network-stack posix --developer-mode=1 --overprovisioned --listen-address 192.168.215.2 --rpc-address 192.168.215.2 --seed-provider-parameters seeds=192.168.215.2 --alternator-address 192.168.215.2 --blocked-reactor-notify-ms 999999999 | |
- name: Set Path | |
run: | | |
echo "/usr/local/lib/erlang/bin" >> $GITHUB_PATH | |
- name: Compile | |
run: make compile | |
- name: Run xref | |
run: make xref | |
- name: Run eunit | |
run: make eunit | |
- name: Run dialyzer | |
run: make dialyzer |