Bump org.apache.kafka:kafka-clients from 2.5.0 to 3.7.1 in /applications/accounts/admin-event-listener #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Check | |
on: | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ develop ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install autopep8 | |
run: pip install autopep8 | |
- name: Run lint-check.sh | |
run: bash lint-check.sh |