Skip to content

Commit

Permalink
feat: add GitHub workflow for testing
Browse files Browse the repository at this point in the history
Tests against the last three versions of OTP and Elixir
  • Loading branch information
geolessel committed Sep 16, 2023
1 parent b4bbc10 commit 140e05b
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Elixir CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

name: Build and test Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}}
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['24.3', '25.3', '26.0']
elixir: ['1.13', '1.14', '1.15']
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
elixir-version: ${{matrix.otp}}
otp-version: ${{matrix.elixir}}
- name: Restore dependencies cache
uses: actions/cache@v3
with:
path: deps
key: ${{ runner.os }}-E${{matrix.elixir}}-O${{matrix.otp}}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-E${{matrix.elixir}}-O${{matrix.otp}}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test

0 comments on commit 140e05b

Please sign in to comment.