Skip to content

Commit

Permalink
Use GitHub Actions instead of travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sile committed Sep 13, 2023
1 parent 345278b commit 2a90a37
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 27 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: Run checks and tests over ${{matrix.otp}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
otp: ['24.0', '25.0', '26.0']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
rebar3-version: '3.20.0'
- run: rebar3 compile
- run: rebar3 xref
- run: rebar3 eunit
- run: rebar3 dialyzer
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ logi
====

[![hex.pm version](https://img.shields.io/hexpm/v/logi.svg)](https://hex.pm/packages/logi)
[![Build Status](https://travis-ci.org/sile/logi.svg?branch=master)](https://travis-ci.org/sile/logi)
[![Code Coverage](https://codecov.io/gh/sile/logi/branch/master/graph/badge.svg)](https://codecov.io/gh/sile/logi/branch/master)
[![Build Status](https://github.com/sile/logi/workflows/build/badge.svg)](https://github.com/sile/logi)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)

A Logger Interface Library for Erlang/OTP.
Expand Down

0 comments on commit 2a90a37

Please sign in to comment.