Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
lexmag committed Dec 1, 2023
1 parent 00c9d69 commit 7e1e940
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 28 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

on:
push:
# branches:
# - master
pull_request:

jobs:
test:
name: Test suite
runs-on: ubuntu-20.04

strategy:
matrix:
versions:
- otp: "20"
elixir: "1.6"
- otp: "24"
elixir: "1.14"

env:
MIX_ENV: test

steps:
- uses: actions/checkout@v2

- name: Set up Elixir environment
uses: erlef/setup-beam@v1
with:
elixir-version: ${{ matrix.versions.elixir }}
otp-version: ${{ matrix.versions.otp }}

- name: Install dependencies
run: mix deps.get --only test

- name: Run tests
run: mix test
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

0 comments on commit 7e1e940

Please sign in to comment.