Skip to content

Commit

Permalink
Clean up CI action to support Elixir 1.16 (#64)
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Szlosarczyk maciej@mindvalley.com
  • Loading branch information
maciej-szlosarczyk authored Feb 16, 2024
1 parent 41220cb commit e170fb8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/gh-action-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# and running the workflow steps.
matrix:
otp: ["25.2", "26.2"]
elixir: ["1.15.6", "1.14.5"]
elixir: ["1.15.6", "1.16.1"]
services:
db:
env:
Expand Down Expand Up @@ -57,8 +57,8 @@ jobs:
deps
_build
priv/plts
key: ${{ runner.os }}-${{ runner.arch }}-mix-${{ matrix.elixir }}-${{ matrix.erlang }}-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-${{ runner.arch }}-mix-${{ matrix.elixir }}-${{ matrix.erlang }}
key: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.elixir }}-${{ matrix.otp }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.elixir }}-${{ matrix.otp }}-mix

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ config :mv_opentelemetry_harness, MvOpentelemetryHarness.Repo,
pool: Ecto.Adapters.SQL.Sandbox

# Print only warnings and errors during test
config :logger, level: :warn
config :logger, level: :warning
config :phoenix, :json_library, Jason
2 changes: 1 addition & 1 deletion mv_opentelemetry_harness/config/test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ config :mv_opentelemetry_harness, MvOpentelemetryHarnessWeb.Endpoint,
server: false

# Print only warnings and errors during test
config :logger, level: :warn
config :logger, level: :warning

0 comments on commit e170fb8

Please sign in to comment.