Skip to content

Commit ea4fcd0

Browse files
committed
Tag switch for semantic version friendly release
1 parent e51b233 commit ea4fcd0

File tree

3 files changed

+24
-9
lines changed

3 files changed

+24
-9
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
]}.
1818

1919
{deps, [
20-
{riak_pb, {git, "https://github.com/basho/riak_pb", {tag, "riak_kv-3.0.2"}}}
20+
{riak_pb, {git, "https://github.com/basho/riak_pb", {tag, "3.0.4"}}}
2121
]}.
2222

2323
{edoc_opts, [

0 commit comments

Comments
 (0)