Skip to content

Commit 11571d4

Browse files
author
Martin Cox
committed
Switch to github workflow & use develop branch for mainline OTP24 work.
1 parent d0de469 commit 11571d4

File tree

3 files changed

+29
-8
lines changed

3 files changed

+29
-8
lines changed

.github/workflows/erlang.yml

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

.travis.yml

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

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# riak dt
22

3+
[![Actions Status](https://github.com/basho/riak_dt/workflows/Erlang%20CI/badge.svg)](https://github.com/basho/riak_dt/actions)
4+
5+
36
## WHAT?
47

58
A set of state based CRDTs implemented in Erlang and on the paper -

0 commit comments

Comments
 (0)