Skip to content

Commit

Permalink
Use GitHub actions instead of travis
Browse files Browse the repository at this point in the history
  • Loading branch information
skirino committed Apr 8, 2023
1 parent 9b91378 commit e71943c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 39 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on: push

jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['24.3.4.10', '25.3']
elixir: ['1.13.4', '1.14.4']
steps:
- uses: actions/checkout@v3
- uses: erlef/[email protected]
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
version-type: strict
- run: mix deps.get
- run: mix test --cover
38 changes: 0 additions & 38 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Elixir macro utilities to make type-based programming easier.

[![Hex.pm](http://img.shields.io/hexpm/v/croma.svg)](https://hex.pm/packages/croma)
[![Hex.pm](http://img.shields.io/hexpm/dt/croma.svg)](https://hex.pm/packages/croma)
[![Build Status](https://travis-ci.com/skirino/croma.svg)](https://travis-ci.com/github/skirino/croma)
[![Coverage Status](https://coveralls.io/repos/github/skirino/croma/badge.svg?branch=master)](https://coveralls.io/github/skirino/croma?branch=master)

## Usage
Expand Down

0 comments on commit e71943c

Please sign in to comment.