Skip to content

Update pylint.yml

Update pylint.yml #3

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_st: ${{ inputs.deploy_st }}"

Check failure on line 22 in .github/workflows/pylint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pylint.yml

Invalid workflow file

You have an error in your yaml syntax on line 22
deploy_dev:
runs-on: ubuntu-latest
environment: dev
steps:
- run: echo "${{ inputs.deploy_dev }}"