diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a2a40d..b6cfe9c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: name: OTP ${{matrix.otp_vsn}} strategy: matrix: - otp_vsn: ['26.1', '25.3', '24.3'] + otp_vsn: ['26.2', '25.3', '24.3'] rebar_vsn: ['3.22.0'] runs-on: 'ubuntu-22.04' steps: @@ -33,7 +33,8 @@ jobs: if: ${{ matrix.otp_vsn == '26.1' }} - run: rebar3 do ct --cover - run: rebar3 as test codecov analyze - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + - uses: codecov/codecov-action@v3 + with: + name: Upload coverage reports to Codecov + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: true diff --git a/README.md b/README.md index 7d2f111..5899076 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # `opuntia` -[![Actions Status](https://github.com/NelsonVides/opuntia/actions/workflows/ci.yml/badge.svg)](https://github.com/NelsonVides/opuntia/actions/workflows/ci.yml) -[![codecov](https://codecov.io/gh/NelsonVides/opuntia/branch/main/graph/badge.svg)](https://codecov.io/gh/NelsonVides/opuntia) +[![Actions Status](https://github.com/esl/opuntia/actions/workflows/ci.yml/badge.svg)](https://github.com/esl/opuntia/actions/workflows/ci.yml) +[![codecov](https://codecov.io/gh/esl/opuntia/branch/main/graph/badge.svg)](https://codecov.io/gh/esl/opuntia) [![Hex](http://img.shields.io/hexpm/v/opuntia.svg)](https://hex.pm/packages/opuntia) `opuntia` is a basic set of tools for traffic shaping for erlang and elixir diff --git a/rebar.config b/rebar.config index 6f16ebd..dee012f 100644 --- a/rebar.config +++ b/rebar.config @@ -32,7 +32,7 @@ {doc, #{provider => ex_doc}} ]}. {ex_doc, [ - {source_url, <<"https://github.com/NelsonVides/opuntia">>}, + {source_url, <<"https://github.com/esl/opuntia">>}, {extras, [<<"README.md">>, <<"LICENSE">>]}, {main, <<"readme">>} ]}. diff --git a/src/opuntia.app.src b/src/opuntia.app.src index 8bc467f..1707264 100644 --- a/src/opuntia.app.src +++ b/src/opuntia.app.src @@ -11,5 +11,5 @@ {doc, "doc"}, {modules, []}, {licenses, ["Apache 2.0"]}, - {links, [{"GitHub", "https://github.com/NelsonVides/opuntia/"}]} + {links, [{"GitHub", "https://github.com/esl/opuntia/"}]} ]}.