Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
Signed-off-by: Corey Hemminger <[email protected]>
  • Loading branch information
Stromweld committed Jun 18, 2024
1 parent 8466cd0 commit a524083
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/lint-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Lint & Unit test
workflow_call:
inputs:
bundle_with:
description: "Bundle with option for Chefstyle, chose the bundler group that Chefstyle is in"
description: "Chose the bundler group name that Chefstyle is in"
type: "string"
required: false
default: "chefstyle"
Expand All @@ -29,7 +29,8 @@ jobs:
uses: actions/checkout@v4
- name: Check for Gemfile
id: check
run: echo "::set-output name=gemfile::$(if [ -f Gemfile ]; then echo 'true'; else echo 'false'; fi)"
run: |
echo "gemfile::$(if [ -f Gemfile ]; then echo 'true'; else echo 'false'; fi)" >> $GITHUB_OUTPUT

Check failure on line 33 in .github/workflows/lint-unit.yml

View workflow job for this annotation

GitHub Actions / lint-unit / yamllint

33:81 [line-length] line too long (105 > 80 characters)
- name: Setup Ruby
if: steps.check.outputs.gemfile == 'true'
uses: ruby/[email protected]
Expand Down Expand Up @@ -76,7 +77,8 @@ jobs:
uses: actions/checkout@v4
- name: Check for Gemfile
id: check
run: echo "::set-output name=gemfile::$(if [ -f Gemfile ]; then echo 'true'; else echo 'false'; fi)"
run: |
echo "gemfile::$(if [ -f Gemfile ]; then echo 'true'; else echo 'false'; fi)" >> $GITHUB_OUTPUT

Check failure on line 81 in .github/workflows/lint-unit.yml

View workflow job for this annotation

GitHub Actions / lint-unit / yamllint

81:81 [line-length] line too long (105 > 80 characters)
- name: Setup Ruby
if: steps.check.outputs.gemfile == 'true'
uses: ruby/[email protected]
Expand Down

0 comments on commit a524083

Please sign in to comment.