Skip to content

Commit

Permalink
Migrate from travis ci to github actions (#193)
Browse files Browse the repository at this point in the history
* Add github actions

* FIx CI versions

* Remove travis
  • Loading branch information
Nitrino authored Nov 17, 2022
1 parent 4276dd7 commit d5de842
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 14 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: push

jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
include:
- otp: 25.1
elixir: 1.14.2
- otp: 21.3
elixir: 1.7.4


steps:
- uses: actions/checkout@v2
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

0 comments on commit d5de842

Please sign in to comment.