Skip to content

Commit

Permalink
actions mig
Browse files Browse the repository at this point in the history
  • Loading branch information
coryodaniel committed Oct 2, 2019
1 parent e276558 commit b282559
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/test.yaml
@@ -1,17 +1,16 @@
name: Bonny Tests
on: push
jobs:
test:
build:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: [20.x, 21.x, 22.x]
elixir: [1.9.x]
container:
image: elixir:1.9.1-slim
steps:
- uses: actions/checkout@v1.0.0
- uses: actions/setup-elixir@v1.0.0
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test
- uses: actions/checkout@v1
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: Run Tests
run: mix test

0 comments on commit b282559

Please sign in to comment.