Skip to content

Commit

Permalink
Merge pull request #2 from id/0414-update-build-status-badge
Browse files Browse the repository at this point in the history
chore: replace travis with github actions and update status badge
  • Loading branch information
zmstone committed Apr 17, 2023
2 parents 621d92b + bb1f0f4 commit 02daa4e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 17 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
ci:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
otp:
- 24
- 25
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: 3.20.0
- run: |
rebar3 do eunit,edoc
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
coveralls-erl
=============
[![Build Status](https://travis-ci.org/markusn/coveralls-erl.png?branch=master)](https://travis-ci.org/markusn/coveralls-erl)
[![Build status](https://github.com/emqx/coveralls-erl/actions/workflows/main.yml/badge.svg)](https://github.com/emqx/coveralls-erl/actions/workflows/main.yml)
[![Coverage Status](https://coveralls.io/repos/markusn/coveralls-erl/badge.png?branch=master)](https://coveralls.io/r/markusn/coveralls-erl?branch=master)
[![Hex.pm](https://img.shields.io/hexpm/v/coveralls.svg?style=flat)](https://hex.pm/packages/coveralls)

Expand Down

0 comments on commit 02daa4e

Please sign in to comment.