Skip to content

Commit

Permalink
Merge pull request #9 from abshierjoel/chore/test-multiple-versions-i…
Browse files Browse the repository at this point in the history
…n-ci

chore(ci): Test matrix of elixir/erlang versions
  • Loading branch information
abshierjoel authored Aug 14, 2024
2 parents bb78f1a + 7654f0b commit 5f1cd26
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/mix-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
otp: ['26.2.4']
elixir: ['1.16.3']
include:
- elixir: '1.13.4'
otp: '25.3'
- elixir: '1.14.5'
otp: '26.2'
- elixir: '1.15.8'
otp: '26.2'
- elixir: '1.16.3'
otp: '26.2'
- elixir: '1.17.2'
otp: '27.0'

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
erlang 26.2.1
elixir 1.16.3-otp-26
erlang 27.0.1
elixir 1.17.2-otp-26
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ defmodule TinyMaps.Mixfile do
app: :tiny_maps,
version: @version,
elixir: "~> 1.0",
otp: "~> 21",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit 5f1cd26

Please sign in to comment.