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
10 changes: 3 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
branches: [main]

env:
OTP-VERSION: 25.2.3
REBAR3-VERSION: 3.20.0
OTP-VERSION: '28.1'
REBAR3-VERSION: '3.25.0'

jobs:
check:
Expand All @@ -17,16 +17,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- uses: erlef/setup-beam@v1
with:
otp-version: ${{ env.OTP-VERSION }}
rebar3-version: ${{ env.REBAR3-VERSION }}

- uses: actions/cache@v3.2.6
- uses: actions/cache@v4
id: rebar3-cache
with:
path: |
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ An OTP application to send and receive real time events over HTTP connections.

## Prerequisites

![Min. OTP version](https://img.shields.io/badge/min._OTP-25.3.2-blue)
![Max. OTP version](https://img.shields.io/badge/max._OTP-26-blue)
![Min. rebar version](https://img.shields.io/badge/min._rebar-3.22.X-blue)
![Min. OTP version](https://img.shields.io/badge/min._OTP-28-blue)
![Min. rebar version](https://img.shields.io/badge/min._rebar-3.25.X-blue)

## Usage

Expand Down
14 changes: 7 additions & 7 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{erl_opts, [warnings_as_errors]}.

{deps, [
{cowboy, {git, "git@github.com:ninenines/cowboy.git", {branch, "master"}}},
{cowboy, {git, "https://github.com/ninenines/cowboy.git", {branch, "master"}}},
{ebus, "0.3.0", {pkg, erlbus}},
{njson, {git, "git@github.com:nomasystems/njson.git", {branch, "main"}}},
{nuid, {git, "git@github.com:nomasystems/nuid.git", {branch, "main"}}}
{njson, {git, "https://github.com/nomasystems/njson.git", {branch, "main"}}},
{nuid, {git, "https://github.com/nomasystems/nuid.git", {branch, "main"}}}
]}.

{project_plugins, [
{erlfmt, {git, "git@github.com:WhatsApp/erlfmt.git", {branch, "main"}}},
{gradualizer, {git, "git@github.com:josefs/Gradualizer.git", {branch, "master"}}}
{erlfmt, {git, "https://github.com/WhatsApp/erlfmt.git", {branch, "main"}}},
{gradualizer, {git, "https://github.com/josefs/Gradualizer.git", {branch, "master"}}}
]}.
{erlfmt, [write]}.

Expand All @@ -29,8 +29,8 @@
{profiles, [
{test, [
{deps, [
{gun, {git, "git@github.com:ninenines/gun.git", {branch, "master"}}},
{nct_util, {git, "git@github.com:nomasystems/nct_util.git", {branch, "main"}}}
{gun, {git, "https://github.com/ninenines/gun.git", {branch, "master"}}},
{nct_util, {git, "https://github.com/nomasystems/nct_util.git", {branch, "main"}}}
]}
]}
]}.
Expand Down
28 changes: 0 additions & 28 deletions rebar.lock

This file was deleted.