Skip to content

feat: INFRA-824 Added gh action to publish image #2

feat: INFRA-824 Added gh action to publish image

feat: INFRA-824 Added gh action to publish image #2

Workflow file for this run

name: Lint
# Run this workflow every time a new commit pushed to your repository
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- master
pull_request:
branches:
- master
jobs:
black:
name: Black Code Formatter
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Black Code Formatter
uses: lgeiger/[email protected]
with:
args: '. -l 99 -t py37 --check'
yamllint:
name: YAML Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: YAML Lint
uses: ibiqlik/[email protected]
with:
file_or_dir: .
format: standard
config_data: |
extends: default
rules:
truthy: disable
line-length:
max: 99
indentation:
spaces: consistent
indent-sequences: true
check-multi-line-strings: false