Skip to content

Commit

Permalink
ensure apache license in source files
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlah committed Oct 10, 2023
1 parent 5156cc8 commit f3b2f39
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,7 @@ jobs:
run: mix archive.install hex mix_gleam --force
- name: Install dependencies
run: mix deps.get
- name: Ensure Apache License
run: mix insert_license --verify --license apache
- name: Run tests
run: mix test
1 change: 1 addition & 0 deletions lib/testcontainers_elixir.ex
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0
defmodule TestcontainersElixir do
@moduledoc """
Documentation for `TestcontainersElixir`.
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ defmodule Meetup.MixProject do
[
{:mix_gleam, "~> 0.6"},
{:gleam_hackney, "~> 1.1"},
{:gleam_http, "~> 3.5"}
{:gleam_http, "~> 3.5"},
{:ex_license, "~> 0.1.0"}
]
end

Expand Down
1 change: 1 addition & 0 deletions mix.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
%{
"certifi": {:hex, :certifi, "2.12.0", "2d1cca2ec95f59643862af91f001478c9863c2ac9cb6e2f89780bfd8de987329", [:rebar3], [], "hexpm", "ee68d85df22e554040cdb4be100f33873ac6051387baf6a8f6ce82272340ff1c"},
"ex_license": {:hex, :ex_license, "0.1.1", "bbdaba704f861894da3ae80e4399984379f19de1cca4ecf7d799616c832b8821", [:mix], [], "hexpm", "dd95aaaba0c9c6f0e9be2db3e9fac0bf69784557e04f700f94e90629f5e24e1d"},
"gleam_fetch": {:hex, :gleam_fetch, "0.2.1", "ae5b960e62858354e1f075d6c857730648218b18ef1f13b5dc93f15e109767ca", [:gleam], [{:gleam_http, "~> 3.1", [hex: :gleam_http, repo: "hexpm", optional: false]}, {:gleam_javascript, "~> 0.3", [hex: :gleam_javascript, repo: "hexpm", optional: false]}, {:gleam_stdlib, "~> 0.31", [hex: :gleam_stdlib, repo: "hexpm", optional: false]}], "hexpm", "f64e93c754d948b2d37abc4add5482fe0faed4b99c79e66012dde96bedc40544"},
"gleam_hackney": {:hex, :gleam_hackney, "1.1.0", "f6b1e413490b0214f0f1c3f2a8d720ee2149329e18a632d91c5657bbe3aad964", [:gleam], [{:gleam_http, "~> 3.0", [hex: :gleam_http, repo: "hexpm", optional: false]}, {:gleam_stdlib, "~> 0.18", [hex: :gleam_stdlib, repo: "hexpm", optional: false]}, {:hackney, "~> 1.18", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "ca69ad9061c4a8775a7bd445de33ecefd87379af8e5b028f3dd0216beca5dd0b"},
"gleam_http": {:hex, :gleam_http, "3.5.0", "a81baa9762a4fa763dcf4abd8a6c8a9979d9464957187b440a609492e6edf4ce", [:gleam], [{:gleam_stdlib, "~> 0.18", [hex: :gleam_stdlib, repo: "hexpm", optional: false]}], "hexpm", "fae9ae3eb1ca90c2194615d20fffd1e28b630e84daca670b28d959b37bcbb02c"},
Expand Down

0 comments on commit f3b2f39

Please sign in to comment.