Merge pull request #276 from benjoe87/fix-snappy-support #26
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: | |
branches: [ develop-3.0 ] | |
pull_request: | |
branches: [ develop-3.0 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: erlang:22.3.3 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Compile | |
run: apt-get update && apt-get install -y cmake && make | |
- name: Run tests | |
run: apt-get update && apt-get install -y cmake libc6-dev && make check |