Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test on Erlang/OTP 26 and Elixir 1.15 #64

Merged
merged 3 commits into from
Jul 6, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
elixir: '1.14.3'
otp: '25.3'
lint: lint
- pair:
elixir: '1.15.1'
otp: '26.0.2'
steps:
- uses: actions/checkout@v2

Expand Down
10 changes: 9 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,18 @@ defmodule X509.MixProject do

def application do
[
extra_applications: [:crypto, :public_key, :logger, :ssl]
extra_applications: extra_applications(Mix.env())
]
end

defp extra_applications(:test) do
extra_applications(:prod) ++ [:inets]
end

defp extra_applications(_env) do
[:crypto, :public_key, :logger, :ssl]
end

defp deps do
[
{:ex_doc, "~> 0.22", only: :dev}
Expand Down