Skip to content

Commit

Permalink
Address YAML linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brcrista committed Dec 27, 2019
1 parent 5e1c8c0 commit c63dffb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
---
name: 'Setup Python'
description: 'Set up a specific version of Python and add the command-line tools to the PATH'
description: 'Set up a specific version of Python and add the command-line tools to the PATH.'
author: 'GitHub'
inputs:
python-version:
description: 'Version range or exact version of a Python version to use, using semvers version range syntax.'
description: 'Version range or exact version of a Python version to use, using SemVer's version range syntax.'
default: '3.x'
architecture:
description: 'The target architecture (x86, x64) of the Python interpreter.'
Expand All @@ -13,4 +14,4 @@ runs:
main: 'dist/index.js'
branding:
icon: 'code'
color: 'yellow'
color: 'yellow'
4 changes: 2 additions & 2 deletions yaml-lint-config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extends: default

rules:
# 80 chars should be enough, but don't fail if a line is longer
# 120 chars should be enough, but don't fail if a line is longer
line-length:
max: 80
max: 120
level: warning

0 comments on commit c63dffb

Please sign in to comment.