From 4d3f4bb3fb77b50e925bfb902f318b3ecb6a6c70 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 | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/modules-tests.yml b/.github/workflows/modules-tests.yml index de512d4..1325b78 100644 --- a/.github/workflows/modules-tests.yml +++ b/.github/workflows/modules-tests.yml @@ -25,8 +25,7 @@ jobs: 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