Skip to content
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ jobs:
include:
# Latest - run all checks
- otp: '28.1'
rebar3: '3.24.0'
rebar3: '3.25.0'
lint: true
dialyzer: true
coverage: true
# Stable
- otp: '27.2'
rebar3: '3.24.0'
rebar3: '3.25.0'
# Minimum supported
- otp: '25.3'
rebar3: '3.23.0'
rebar3: '3.24.0'

steps:
- name: Checkout
Expand Down Expand Up @@ -96,14 +96,14 @@ jobs:

- name: Generate coverage report
if: ${{ matrix.coverage }}
run: rebar3 covertool generate
run: rebar3 as test codecov analyze

- name: Upload coverage to Codecov
if: ${{ matrix.coverage }}
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5.5.2
with:
files: _build/test/covertool/gen_http.covertool.xml
fail_ci_if_error: false
files: _build/test/codecov/codecov.json
fail_ci_if_error: true
flags: erlang-${{ matrix.otp }}
name: Erlang/OTP ${{ matrix.otp }}
verbose: true # optional (default = false)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/h2-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

env:
OTP_VERSION: '28.1'
REBAR3_VERSION: '3.24.0'
REBAR3_VERSION: '3.25.0'

steps:
- name: Checkout
Expand Down
9 changes: 1 addition & 8 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
]}.

{project_plugins, [
{covertool, "~> 2.0"},
{rebar3_codecov, {git, "https://github.com/esl/rebar3_codecov.git", {ref, "89915c0\n"}}},
{rebar3_lint, "~> 4.2"},
{erlfmt, "~> 1.7"},
{rebar3_proper, "~> 0.12"}
Expand Down Expand Up @@ -96,13 +96,6 @@
{cover_opts, [verbose]}.
{cover_print_enabled, true}.
{cover_export_enabled, true}.
{covertool, [
{coverdata_files, [
"eunit.coverdata",
"proper.coverdata",
"ct.coverdata"
]}
]}.

{alias, [
{test, [
Expand Down