Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 8 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,23 @@ on: [push, pull_request]
jobs:
build:
name: Build and test
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
env:
MIX_ENV: test
# see https://hexdocs.pm/elixir/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
strategy:
fail-fast: false
matrix:
include:
- elixir: 1.19.x
otp: 28.x
lint: true
- elixir: 1.19.x
otp: 26.x
- elixir: 1.18.x
otp: 27.x
lint: true
- elixir: 1.18.x
otp: 25.x
- elixir: 1.17.x
otp: 27.x
- elixir: 1.17.x
Expand All @@ -27,22 +33,6 @@ jobs:
otp: 26.x
- elixir: 1.15.x
otp: 24.x
- elixir: 1.14.x
otp: 25.x
- elixir: 1.14.x
otp: 23.x
- elixir: 1.13.x
otp: 24.x
- elixir: 1.13.x
otp: 22.x
- elixir: 1.12.x
otp: 24.x
- elixir: 1.12.x
otp: 22.x
- elixir: 1.11.x
otp: 23.x
- elixir: 1.11.x
otp: 21.x
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ defmodule Params.Mixfile do
[
app: :params,
version: @version,
elixir: "~> 1.2",
elixir: "~> 1.15",
name: "Params",
deps: deps(),
docs: docs(),
package: package(),
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
dialyzer: [plt_add_apps: [:ecto]],
xref: [exclude: [Ecto.Changeset]]
elixirc_options: [no_warn_undefined: [Ecto.Changeset]]
]
end

Expand Down
Loading