Skip to content

Commit

Permalink
ci: include GitHub Actions runner
Browse files Browse the repository at this point in the history
  • Loading branch information
paulswartz committed Dec 27, 2022
1 parent c5089ab commit 2811a30
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Elixir

on: push

jobs:
test:
runs-on: ubuntu-20.04
name: OTP ${{matrix.otp}} / Elixir ${{matrix.elixir}}
strategy:
matrix:
otp: ['21.0']
elixir: ['1.8.1']
steps:
- uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
version-type: strict
otp-version: ${{matrix.otp}}
elixir-version: ${{matrix.elixir}}
- run: mix deps.get
- run: mix test

0 comments on commit 2811a30

Please sign in to comment.