Skip to content

Commit

Permalink
CI housekeeping (#73)
Browse files Browse the repository at this point in the history
List of changes:
- add CI badge to README
- add OTP 27 to supported OTP
- bump GitHub actions
- set dialyzer on OTP 27
  • Loading branch information
kianmeng authored Sep 3, 2024
1 parent dc3c22e commit aff10bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
otp_version: [24, 25, 26]
otp_version: [24, 25, 26, 27]
os: [ubuntu-latest]
env:
OTP_VERSION: ${{ matrix.otp_version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp_version }}
rebar3-version: 3.22.0
- uses: actions/cache@v2
- uses: actions/cache@v4
name: Cache
with:
path: |
Expand All @@ -42,4 +42,4 @@ jobs:
run: rebar3 xref
- name: Dialyzer
run: rebar3 dialyzer
if: ${{ matrix.otp_version == 26 }}
if: ${{ matrix.otp_version == 27 }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# telemetry_poller

[![Test](https://github.com/kianmeng/telemetry_poller/actions/workflows/test.yml/badge.svg)](https://github.com/kianmeng/telemetry_poller/actions/workflows/test.yml)
[![Codecov](https://codecov.io/gh/beam-telemetry/telemetry_poller/branch/master/graphs/badge.svg)](https://codecov.io/gh/beam-telemetry/telemetry_poller/branch/master/graphs/badge.svg)

Allows to periodically collect measurements and dispatch them as Telemetry events.
Expand Down

0 comments on commit aff10bf

Please sign in to comment.