Skip to content

Commit

Permalink
update_everything
Browse files Browse the repository at this point in the history
  • Loading branch information
alanvardy committed Jun 17, 2024
1 parent 9dc97cb commit 7bab31a
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 37 deletions.
6 changes: 4 additions & 2 deletions .credo.exs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@
{Credo.Check.Refactor.CyclomaticComplexity, []},
{Credo.Check.Refactor.FunctionArity, []},
{Credo.Check.Refactor.LongQuoteBlocks, false},
{Credo.Check.Refactor.MapInto, []},
# not compatible with 1.17
{Credo.Check.Refactor.MapInto, false},
{Credo.Check.Refactor.MatchInCondition, []},
{Credo.Check.Refactor.NegatedConditionsInUnless, []},
{Credo.Check.Refactor.NegatedConditionsWithElse, []},
Expand All @@ -161,7 +162,8 @@
{Credo.Check.Warning.ExpensiveEmptyEnumCheck, []},
{Credo.Check.Warning.IExPry, []},
{Credo.Check.Warning.IoInspect, []},
{Credo.Check.Warning.LazyLogging, []},
# not compatible with 1.17
{Credo.Check.Warning.LazyLogging, false},
{Credo.Check.Warning.MixEnv, false},
{Credo.Check.Warning.OperationOnSameValues, []},
{Credo.Check.Warning.OperationWithConstantResult, []},
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
${{ runner.os }}-credo-
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0.2
elixir-version: 1.15.5
otp-version: 27.0
elixir-version: 1.17
- run: mix deps.get
- run: mix credo --strict

Expand Down Expand Up @@ -59,8 +59,8 @@ jobs:
${{ runner.os }}-credo-
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0.2
elixir-version: 1.15.5
otp-version: 27.0
elixir-version: 1.17
- run: mix deps.get
- run: mix doctor

Expand Down Expand Up @@ -90,8 +90,8 @@ jobs:
${{ runner.os }}-cypress-
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0.2
elixir-version: 1.15.5
otp-version: 27.0
elixir-version: 1.17
- run: mix deps.get
- run: mix assets.deploy
- run: mix cypress.run
Expand Down Expand Up @@ -123,8 +123,8 @@ jobs:
${{ runner.os }}-dialyzer-
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0.2
elixir-version: 1.15.5
otp-version: 27.0
elixir-version: 1.17
- run: mix deps.get
- run: mix dialyzer

Expand Down Expand Up @@ -154,8 +154,8 @@ jobs:
${{ runner.os }}-coveralls-
- uses: erlef/setup-beam@v1
with:
otp-version: 26.0.2
elixir-version: 1.15.5
otp-version: 27.0
elixir-version: 1.17
- run: mix deps.get
- run: mix coveralls.json
- name: Upload to codecov.io
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
elixir 1.15.5-otp-26
erlang 26.0.2
elixir 1.17
erlang 27.0
10 changes: 5 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ defmodule Exzeitable.MixProject do
{:phoenix_view, "~> 2.0"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.20.0"},
{:floki, ">= 0.30.0", only: :test},
{:floki, ">= 0.36.2", only: :test},
{:esbuild, "~> 0.2", runtime: Mix.env() == :dev},
{:swoosh, "~> 1.3"},
{:swoosh, "~> 1.16"},
{:telemetry_metrics, "~> 1.0"},
{:telemetry_poller, "~> 1.0"},
{:telemetry_poller, "~> 1.1"},
{:gettext, "~> 0.18"},
{:jason, "~> 1.2"},
{:plug_cowboy, "~> 2.5"},
Expand All @@ -123,10 +123,10 @@ defmodule Exzeitable.MixProject do
{:credo, "~> 1.5", only: :test, runtime: false},
{:blitz_credo_checks, "~> 0.1", only: :test, runtime: false},
{:dialyxir, "~> 1.1", only: :test, runtime: false},
{:excoveralls, "~> 0.10", only: :test, runtime: false},
{:excoveralls, "~> 0.18.1", only: :test, runtime: false},
{:ex_doc, "~> 0.21", only: [:test, :dev], runtime: false},
{:inch_ex, github: "rrrene/inch_ex", only: :test},
{:stream_data, "~> 0.5", only: :test},
{:stream_data, "~> 1.1", only: :test},
{:doctor, "~> 0.21.0", only: :test}
]
end
Expand Down
Loading

0 comments on commit 7bab31a

Please sign in to comment.