Skip to content

Added filebeat deployment to send logs to ELK #2331

Added filebeat deployment to send logs to ELK

Added filebeat deployment to send logs to ELK #2331

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
version: "23.7.0" # Must be upgraded together with pyproject.toml
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
- uses: isort/isort-action@master
with:
isortVersion: "5.12.0" # Must be upgraded together with pyproject.toml
configuration: "--check-only --diff --profile black --force-single-line-imports"