diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4e0bd2..399796f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: MIX_ENV: test strategy: @@ -16,14 +16,14 @@ jobs: 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: diff --git a/mix.exs b/mix.exs index 51bd3a6..6e57fc7 100644 --- a/mix.exs +++ b/mix.exs @@ -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], preferred_cli_env: ["test.all": :test] ]