Skip to content

Commit

Permalink
Merge pull request #16 from esl/upgrades
Browse files Browse the repository at this point in the history
Upgrades
  • Loading branch information
arcusfelis authored Sep 11, 2024
2 parents c5d7804 + d484b53 commit 4102b01
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 14 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
name: OTP ${{matrix.otp}}
strategy:
matrix:
otp: ['26.0', '25.3', '24.3']
runs-on: 'ubuntu-22.04'
otp: ['27', '26', '25']
runs-on: 'ubuntu-24.04'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: '3.21.0'
- uses: actions/cache@v2
rebar3-version: '3.24.0'
- uses: actions/cache@v4
name: Cache
with:
path: |
Expand All @@ -32,13 +32,13 @@ jobs:
- run: rebar3 compile
- run: rebar3 ct
- run: rebar3 dialyzer
if: ${{ matrix.otp == '26.0' }}
if: ${{ matrix.otp == '27' }}
- run: rebar3 xref
if: ${{ matrix.otp == '26.0' }}
if: ${{ matrix.otp == '27' }}
- run: rebar3 as test do cover, covertool generate
if: ${{ matrix.otp == '26.0' }}
if: ${{ matrix.otp == '27' }}
- name: Upload code coverage
uses: codecov/codecov-action@v2
if: ${{ matrix.otp == '26.0' }}
if: ${{ matrix.otp == '27' }}
with:
file: "_build/test/covertool/segmented_cache.covertool.xml"
6 changes: 4 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{erl_opts, []}.

{deps, [
{telemetry, "1.2.1"}
{telemetry, "1.3.0"}
]}.

{project_plugins, [
{covertool, "2.0.4"}
{rebar3_hex, "7.0.8"},
{rebar3_ex_doc, "0.2.23"},
{covertool, "2.0.7"}
]}.

{covertool, [
Expand Down
6 changes: 3 additions & 3 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{"1.2.0",
[{<<"telemetry">>,{pkg,<<"telemetry">>,<<"1.2.1">>},0}]}.
[{<<"telemetry">>,{pkg,<<"telemetry">>,<<"1.3.0">>},0}]}.
[
{pkg_hash,[
{<<"telemetry">>, <<"68FDFE8D8F05A8428483A97D7AAB2F268AAFF24B49E0F599FAA091F1D4E7F61C">>}]},
{<<"telemetry">>, <<"FEDEBBAE410D715CF8E7062C96A1EF32EC22E764197F70CDA73D82778D61E7A2">>}]},
{pkg_hash_ext,[
{<<"telemetry">>, <<"DAD9CE9D8EFFC621708F99EAC538EF1CBE05D6A874DD741DE2E689C47FEAFED5">>}]}
{<<"telemetry">>, <<"7015FC8919DBE63764F4B4B87A95B7C0996BD539E0D499BE6EC9D7F3875B79E6">>}]}
].

0 comments on commit 4102b01

Please sign in to comment.