Skip to content

Commit 0ac055a

Browse files
authored
Support Elixir 1.19/OTP 28 and bump actions (#341)
1 parent 3766a4e commit 0ac055a

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
env:
1313
MIX_ENV: test
1414
strategy:
1515
fail-fast: false
1616
matrix:
1717
include:
1818
- pair:
19-
elixir: 1.14
20-
otp: 24.2
19+
elixir: "1.14"
20+
otp: "24"
2121
- pair:
22-
elixir: 1.18
23-
otp: 27.3
22+
elixir: "1.19"
23+
otp: "28"
2424
lint: lint
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727

2828
- uses: erlef/setup-beam@v1
2929
with:

mix.exs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ defmodule DBConnection.Mixfile do
1717
build_per_environment: false,
1818
consolidate_protocols: false,
1919
test_paths: test_paths(Mix.env()),
20+
test_ignore_filters: [~r/test_support\.exs$/],
2021
aliases: ["test.all": ["test", "test.pools"], "test.pools": &test_pools/1],
2122
preferred_cli_env: ["test.all": :test]
2223
]

0 commit comments

Comments
 (0)