Skip to content

Commit

Permalink
Merge pull request #167 from esl/add_coverage
Browse files Browse the repository at this point in the history
Enable codecov analysis
  • Loading branch information
DenysGonchar authored Dec 14, 2023
2 parents fd29e7e + be3caa4 commit 24506c6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:

jobs:
test:
name: ${{ matrix.test-type }} test on OTP ${{matrix.otp}}
name: ${{ matrix.test-type }} test on OTP ${{matrix.otp_vsn}}
strategy:
matrix:
otp_vsn: ['25.3', '24.3']
rebar_vsn: ['3.20.0']
otp_vsn: ['26.1', '25.3', '24.3']
rebar_vsn: ['3.22.0']
test-type: ['regular', 'integration']
runs-on: 'ubuntu-22.04'
steps:
Expand All @@ -23,6 +23,11 @@ jobs:
rebar3-version: ${{ matrix.rebar_vsn }}
- if: matrix.test-type == 'regular'
run: make test
- if: matrix.test-type == 'regular'
name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- if: matrix.test-type == 'integration'
run: make integration_test
env:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ _build
rebar3.crashdump
*~
doc/
codecov.json
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,16 @@ ct:
## make ct SUITE=some_test_SUITE,another_test_SUITE
## SUITE=some_test_SUITE make ct
## SUITE=some_test_SUITE,another_test_SUITE make ct
@ echo $(REBAR) ct --verbose $(SUITE_OPTS)
@ $(REBAR) ct --verbose $(SUITE_OPTS)
@ echo $(REBAR) ct -c --verbose $(SUITE_OPTS)
@ $(REBAR) ct -c --verbose $(SUITE_OPTS)

lint:
$(REBAR) as elvis lint

test: compile xref dialyzer ct lint
test: compile xref dialyzer ct lint codecov

codecov:
$(REBAR) as test codecov analyze

integration_test:
./integration_test/stop_test_cluster.sh
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
[![](https://github.com/esl/amoc/workflows/CI/badge.svg)](https://github.com/esl/amoc/actions?query=workflow%3ACI)
[![Hex](http://img.shields.io/hexpm/v/amoc.svg)](https://hex.pm/packages/amoc)
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/amoc/)
[![codecov](https://codecov.io/github/esl/amoc/graph/badge.svg?token=R1zXAjO7H7)](https://codecov.io/github/esl/amoc)

----------------------------------------------------------------------------------------------
A Murder of Crows, aka amoc, is a simple framework for running massively parallel tests in a distributed environment.
Expand Down
1 change: 1 addition & 0 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

{profiles, [
{test, [
{plugins, [{rebar3_codecov, "0.6.0"}]},
{deps, [
{meck, "0.9.2"},
{proper, "1.4.0"},
Expand Down

0 comments on commit 24506c6

Please sign in to comment.