Skip to content

Commit

Permalink
Update pipelines to drop 1.11 and support 1.16 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobht authored Apr 23, 2024
2 parents c9c720d + edd8f74 commit e9738f6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Elixir CI

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

jobs:
build:
Expand All @@ -11,13 +17,20 @@ jobs:
strategy:
matrix:
include:
- elixir: "1.16"
otp: "24"
- elixir: "1.16"
otp: "25"
- elixir: "1.16"
otp: "26"
should_lint: true

- elixir: "1.15"
otp: "24"
- elixir: "1.15"
otp: "25"
- elixir: "1.15"
otp: "26"
should_lint: true

- elixir: "1.14"
otp: "23"
Expand All @@ -42,13 +55,6 @@ jobs:
- elixir: "1.12"
otp: "24"

- elixir: "1.11"
otp: "22"
- elixir: "1.11"
otp: "23"
- elixir: "1.11"
otp: "24"

steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Azurex.MixProject do
[
app: :azurex,
version: "1.1.0",
elixir: "~> 1.11",
elixir: "~> 1.12",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
description: description(),
Expand Down

0 comments on commit e9738f6

Please sign in to comment.