Skip to content

Commit

Permalink
add python code quality checks
Browse files Browse the repository at this point in the history
  • Loading branch information
bbyalcinkaya committed Aug 30, 2023
1 parent fb047c1 commit b324511
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit b324511

Please sign in to comment.