Skip to content

Pylint

Pylint #4

Workflow file for this run

name: Pylint
on:
workflow_dispatch:
inputs:
deploy_dev:
description: deploy to dev
required: true
default: true
type: boolean
deploy_st:
description: deploy to st
required: false
default: false
type: boolean
jobs:
deploy_st:
runs-on: ubuntu-latest
environment: st
steps:
- run: echo "deploy to st"
deploy_dev:
runs-on: ubuntu-latest
environment: dev
steps:
- run: echo "deploy to dev"