Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/grempe/ex_rated
Browse files Browse the repository at this point in the history
  • Loading branch information
grempe committed Jun 23, 2020
2 parents 3e0364b + c5747fe commit 2e27c75
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Elixir CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup elixir
uses: actions/setup-elixir@v1
with:
elixir-version: '1.9.4' # Define the elixir version [required]
otp-version: '22.2' # Define the OTP version [required]
- name: Install Dependencies
run: mix deps.get
- name: Run Tests
run: mix test

0 comments on commit 2e27c75

Please sign in to comment.