From aca0703eab4c66e9c04946b8b89a5d3924f3f3a8 Mon Sep 17 00:00:00 2001 From: Jamie Strandboge Date: Wed, 9 Oct 2024 11:09:45 -0500 Subject: [PATCH] chore: use jdstrand/language-checker --- .circleci/config.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6c1be86..d36fced 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -73,14 +73,13 @@ commands: command: | make install-venv-dev - # https://docs.getwoke.tech/installation/ - install_woke: - description: Install woke non-inclusivity checker + install_language-checker: + description: Install non-inclusivity language-checker steps: - run: - description: Install woke non-inclusivity checker + description: Install language-checker non-inclusivity checker command: | - go install github.com/get-woke/woke@v0.19.0 + go install github.com/jdstrand/language-checker@latest jobs: tests: @@ -134,11 +133,11 @@ jobs: - image: cimg/go:1.18 steps: - checkout - - install_woke + - install_language-checker - run: name: Running inclusivity checks command: | - make inclusivity-check + language-checker --exit-1-on-failure . # workflows can run in parallel workflows: