Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ on:

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
MIX_ENV: test
strategy:
fail-fast: false
matrix:
include:
- pair:
elixir: 1.14
otp: 24.2
elixir: "1.14"
otp: "24"
- pair:
elixir: 1.18
otp: 27.3
elixir: "1.19"
otp: "28"
lint: lint
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: erlef/setup-beam@v1
with:
Expand Down
1 change: 1 addition & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ defmodule DBConnection.Mixfile do
build_per_environment: false,
consolidate_protocols: false,
test_paths: test_paths(Mix.env()),
test_ignore_filters: [~r/test_support\.exs$/],
aliases: ["test.all": ["test", "test.pools"], "test.pools": &test_pools/1],
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added due to:

warning: the following files do not match any of the configured `:test_load_filters` / `:test_ignore_filters`:

preferred_cli_env: ["test.all": :test]
]
Expand Down
Loading