From 2f0cdcfc6410f6f10174f02e6cbae4e461562cb1 Mon Sep 17 00:00:00 2001 From: Jan Richter Date: Wed, 7 Feb 2024 14:12:33 +0100 Subject: [PATCH] Use avocado-ci-tools for static-checks It uses avocado-ci-tools/static-checks for running avocado-static-checks instead directly dunning scripts from avocado-static-checks repo. Signed-off-by: Jan Richter --- .github/workflows/modules-tests.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/modules-tests.yml b/.github/workflows/modules-tests.yml index de512d4..1108574 100644 --- a/.github/workflows/modules-tests.yml +++ b/.github/workflows/modules-tests.yml @@ -22,11 +22,8 @@ jobs: steps: - name: Check out repository code uses: actions/checkout@v4 - with: - submodules: true - - - name: Install requirements for the static checks - run: pip3 install -r static-checks/requirements.txt - - name: Runs all the static checks - run: ./static-checks/run-static-checks + - name: run static checks + uses: avocado-framework/avocado-ci-tools@main + with: + avocado-static-checks: true