From 2381894bc8eb7881413cca24fcbd35dbd53b216e Mon Sep 17 00:00:00 2001 From: Ayrat Badykov Date: Mon, 13 Jan 2025 09:51:01 +0200 Subject: [PATCH] add compiler yecc and leex to fix warnings (#177) * add compiler yecc and leex fix warnings * add new elixir/otp pair to github workflow * remove lint --- .github/workflows/ci.yml | 3 +++ mix.exs | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0289582..b2dc2c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,9 @@ jobs: elixir: 1.16.1 otp: 26.2.2 lint: lint + - pair: + elixir: 1.17.3 + otp: 27.2 runs-on: ubuntu-latest diff --git a/mix.exs b/mix.exs index 8441656..9b15dc4 100644 --- a/mix.exs +++ b/mix.exs @@ -15,6 +15,7 @@ defmodule ABI.Mixfile do build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, deps: deps(), + compilers: [:yecc, :leex] ++ Mix.compilers(), dialyzer: dialyzer() ] end