Skip to content

Commit

Permalink
Merge pull request #53 from andrewtimberlake/andrewtimberlake-github-…
Browse files Browse the repository at this point in the history
…action

Add Elixir Github action
  • Loading branch information
andrewtimberlake authored Oct 5, 2024
2 parents 19de6f3 + 1df2b51 commit fd6a206
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Elixir CI

on:
push:
branches: [master]
pull_request:
branches: [master]

env:
MIX_ENV: test

permissions:
contents: read

jobs:
build:
name: Build and test
runs-on: ubuntu-latest

strategy:
matrix:
elixir: ['1.14.5', '1.15.4', '1.16.3', '1.17.3']
erlang: ['24.3', '25.3', '26.0', '27.1']
exclude:
- elixir: '1.14.5'
erlang: '27.1'
- elixir: '1.15.4'
erlang: '27.1'
- elixir: '1.16.3'
erlang: '27.1'
- elixir: '1.17.3'
erlang: '24.3'
steps:
- uses: actions/checkout@v3
- name: Set up Elixir
uses: erlef/setup-beam@v1
with:
version-type: 'loose'
elixir-version: ${{ matrix.elixir }}
otp-version: ${{ matrix.erlang }}
- name: Restore dependencies cache
uses: actions/cache@v2
with:
path: deps
key: ${{ runner.os }}-${{ matrix.erlang }}-${{ matrix.elixir }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.erlang }}-${{ matrix.elixir }}-mix-
- name: Install dependencies
run: mix deps.get
- name: Run tests
run: mix test

0 comments on commit fd6a206

Please sign in to comment.