Skip to content

Commit

Permalink
fix: add github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Timmer committed Apr 24, 2024
1 parent c2db697 commit 73c3158
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: push

jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['24.2']
elixir: ['1.13.2', '1.14.3']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test

0 comments on commit 73c3158

Please sign in to comment.