From b3245110f49b83c7a81695860ff0ae814b835c88 Mon Sep 17 00:00:00 2001 From: Burak Bilge Yalcinkaya Date: Wed, 30 Aug 2023 15:28:47 +0300 Subject: [PATCH] add python code quality checks --- .github/workflows/test-pr.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index f62c5bfa..db1a28c1 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -7,9 +7,22 @@ concurrency: cancel-in-progress: true jobs: + python-code-quality-checks: + name: 'Code Quality Checks' + runs-on: ubuntu-latest + steps: + - name: 'Check out code' + uses: actions/checkout@v3 + with: + submodules: recursive + - name: 'Install Poetry' + uses: Gr1N/setup-poetry@v8 + - name: 'Build and run code quality checks' + run: make -C kmultiversx check simple-tests: runs-on: [self-hosted, linux, normal] name: 'Simple Tests' + needs: [python-code-quality-checks] timeout-minutes: 30 steps: - name: 'Check out code'