add gc for added bucket #16
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: erlang:25.0.4 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check formatting | |
run: rebar3 fmt --check | |
- name: Compile | |
run: rebar3 compile | |
- name: Run tests | |
run: rebar3 do eunit |