This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
Update README.md #98
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: Continuous Integration (CI) | Streaming Pipeline | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pep8-python: | |
name: PEP8 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v2 | |
with: | |
poetry-version: 1.5.1 | |
- name: Install packages | |
working-directory: ./modules/streaming_pipeline | |
run: make install_only_dev | |
- name: Run PEP8 linter | |
working-directory: ./modules/streaming_pipeline | |
run: make lint_check | |
- name: Run PEP8 format checker | |
working-directory: ./modules/streaming_pipeline | |
run: make format_check |