diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46392bc..c3959b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,3 +66,8 @@ jobs: - name: Run dialyzer run: mix dialyzer if: ${{ matrix.lint }} + + - name: Run Coveralls + run: mix coveralls.github + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index a961642..18e928a 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ parameter [![CI](https://github.com/phcurado/parameter/workflows/ci/badge.svg?branch=main)](https://github.com/phcurado/parameter/actions?query=branch%3Amain+workflow%3Aci) +[![Coverage Status](https://coveralls.io/repos/github/phcurado/parameter/badge.svg?branch=main)](https://coveralls.io/github/phcurado/parameter?branch=main) [![Hex.pm](https://img.shields.io/hexpm/v/parameter)](https://hex.pm/packages/parameter) [![HexDocs.pm](https://img.shields.io/badge/Docs-HexDocs-blue)](https://hexdocs.pm/parameter) [![License](https://img.shields.io/hexpm/l/parameter.svg)](https://hex.pm/packages/parameter) @@ -85,7 +86,7 @@ Add `parameter` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:parameter, "~> 0.9"} + {:parameter, "~> 0.10"} ] end ``` diff --git a/mix.exs b/mix.exs index 47fc214..95f4490 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Parameter.MixProject do use Mix.Project @source_url "https://github.com/phcurado/parameter" - @version "0.9.0" + @version "0.10.0" def project do [ @@ -79,7 +79,7 @@ defmodule Parameter.MixProject do Parameter.Types.Decimal, Parameter.Types.Float, Parameter.Types.Integer, - Parameter.Types.List, + Parameter.Types.Array, Parameter.Types.Map, Parameter.Types.NaiveDateTime, Parameter.Types.String,