Skip to content

Commit

Permalink
Tag and GHA update
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsumner committed Mar 16, 2021
1 parent c97355b commit 51b7a87
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 11 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Erlang CI

on:
push:
branches: [ develop-3.0 ]
pull_request:
branches: [ develop-3.0 ]

jobs:

build:

runs-on: ubuntu-latest

container:
image: erlang:22.3.3

steps:
- uses: actions/checkout@v2
- name: Compile
run: rebar3 compile
- name: Run tests
run: rebar3 do xref, dialyzer, eunit
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
{deps,
[
%% ibrowse for doing HTTP requests
{ibrowse, {git, "git://github.com/basho/ibrowse.git", {tag, "riak_kv-3.0.0"}}},
{ibrowse, {git, "git://github.com/basho/ibrowse.git", {tag, "4.4.2+riak.3.0.4"}}},

%% webmachine for multipart content parsing, will pull in mochiweb as a dep
{webmachine, {git, "git://github.com/webmachine/webmachine.git", {tag, "1.11.1"}}},

%% mochiweb needed due to issues with webmachine version used
{mochiweb, {git, "git://github.com/basho/mochiweb.git", {tag, "riak_kv-3.0.0"}}},
{mochiweb, {git, "git://github.com/basho/mochiweb.git", {tag, "2.12.1+riak.3.0.4"}}},

%% riak-erlang-client for riakc_obj
{riakc, {git, "git://github.com/basho/riak-erlang-client", {tag, "riak_kv-3.0.2"}}}
{riakc, {git, "git://github.com/basho/riak-erlang-client", {tag, "3.0.4"}}}
]}.
{edoc_opts,
[
Expand Down

0 comments on commit 51b7a87

Please sign in to comment.