Remove the benchmark compare_cost_of_supervision_tree_output_by_two_different_algorithms
#111
Workflow file for this run
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: ["main"] | |
pull_request: | |
types: ["opened", "synchronize", "reopened"] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
# NOTE: Run on Ubuntu of Docker in my computer | |
runs-on: ubuntu-22.04 | |
container: | |
image: erlang:26.2.1 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile | |
run: rebar3 compile | |
- name: Check statically | |
run: rebar3 check | |
- name: Run sample-based-tests | |
run: rebar3 do eunit, ct | |
- name: Run property-based-tests | |
run: rebar3 proper -n 500 |