Skip to content

Commit 41f4b72

Browse files
committed
Update for 3.0.4
1 parent ad40275 commit 41f4b72

File tree

3 files changed

+25
-10
lines changed

3 files changed

+25
-10
lines changed

.github/workflows/erlang.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Erlang CI
2+
3+
on:
4+
push:
5+
branches: [ develop-3.0 ]
6+
pull_request:
7+
branches: [ develop-3.0 ]
8+
9+
jobs:
10+
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
container:
16+
image: erlang:22.3.3
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Compile
21+
run: rebar3 compile
22+
- name: Run tests
23+
run: rebar3 do xref, dialyzer, eunit

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

rebar.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
{eunit_opts, [verbose]}.
99

1010
{deps, [
11-
{riak_pb, {git, "git://github.com/basho/riak_pb.git", {tag, "riak_kv-3.0.2"}}},
11+
{riak_pb, {git, "git://github.com/basho/riak_pb.git", {tag, "3.0.4"}}},
1212
{webmachine, {git, "git://github.com/webmachine/webmachine.git", {tag, "1.11.1"}}},
1313
{riak_core, {git, "git://github.com/basho/riak_core.git", {tag, "riak_kv-3.0.2"}}},
14-
{mochiweb, {git, "git://github.com/basho/mochiweb.git", {tag, "riak_kv-3.0.0"}}}
14+
{mochiweb, {git, "git://github.com/basho/mochiweb.git", {tag, "2.12.1+riak.3.0.4"}}}
1515
]}.
1616

1717
{profiles, [

0 commit comments

Comments
 (0)