Upgrade foil, murmur_nif and shackle deps #179
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: Erlang CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: lpgauth/erlang-scylla:28.3.1-6.2.3-amd64 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Start Scylla | |
| run: | | |
| python3 /docker-entrypoint.py& | |
| sleep 60 | |
| - 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 |