From cc3f93b73a24c585e5a8a55c987c8b845da40270 Mon Sep 17 00:00:00 2001 From: Aleksei Magusev Date: Mon, 4 Dec 2023 19:43:47 -0800 Subject: [PATCH] Use shared GitHub Actions workflow for linting --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78fdccd..c985db9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,13 @@ on: pull_request: jobs: + lint: + name: Code linting + uses: lexmag/elixir-actions/.github/workflows/lint.yml@v2 + with: + otp-version: "24" + elixir-version: "1.14" + test: name: Test suite runs-on: ubuntu-20.04