Skip to content

Commit

Permalink
add github workflow config
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoch-cars committed Jul 15, 2022
1 parent c23c93f commit f82f798
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Elixir CI

on: push

jobs:
build:

runs-on: ubuntu-latest

container:
image: elixir:1.13.1-alpine

steps:
- uses: actions/checkout@v1
- name: Install Dependencies
apk add --no-cache build-base
MIX_ENV=test mix local.rebar --force
MIX_ENV=test mix local.hex --force
MIX_ENV=test mix deps.get
- name: Run Tests
run: MIX_ENV=test mix tst

0 comments on commit f82f798

Please sign in to comment.