Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update links after transfer #2

Merged
merged 2 commits into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -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">>}
]}.
2 changes: 1 addition & 1 deletion src/opuntia.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -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/"}]}
]}.