Upd readme

This commit is contained in:
Ilir Bekteshi 2021-08-19 08:52:08 +02:00
parent 30f9249db0
commit 7089dfb3e6
4 changed files with 14 additions and 3 deletions

View file

@ -6,6 +6,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Get yamllint version
run: yamllint --version
- id: lint-with-config
name: lint with config
uses: ./
@ -31,11 +34,12 @@ jobs:
- id: lint-all-continue
name: lint all (continue on error)
continue-on-error: true
# continue-on-error: true
uses: ./
with:
file_or_dir: test
strict: true
format: standard
- id: default-lint-all
name: default lint all (continue on error)
@ -43,7 +47,11 @@ jobs:
uses: ./
- id: print-output
if: always()
name: Print output
run: |
echo ${{ steps.lint-with-config.outputs.logfile }}
cat ${{ steps.lint-with-config.outputs.logfile }}
echo ${{ steps.lint-all-continue.outputs.logfile }}
cat ${{ steps.lint-all-continue.outputs.logfile }}

View file

@ -99,6 +99,7 @@ jobs:
- run: echo ${{ steps.yaml-lint.outputs.logfile }}
- uses: actions/upload-artifact@v2
if: always()
with:
name: yamllint-logfile
path: ${{ steps.yaml-lint.outputs.logfile }}

View file

@ -35,7 +35,7 @@ runs:
steps:
- id: yamllint
run: |
export LOGFILE=$(mktemp yamllint-XXXXXX)
# export LOGFILE=$(mktemp yamllint-XXXXXX)
${{ github.action_path }}/entrypoint.sh
shell: bash
env:

4
entrypoint.sh Normal file → Executable file
View file

@ -1,4 +1,5 @@
#!/bin/bash -l
set -o pipefail
echo "======================"
echo "= Linting YAML files ="
@ -29,7 +30,8 @@ fi
# Enable globstar so ** globs recursively
shopt -s globstar
yamllint "${options[@]}" ${INPUT_FILE_OR_DIR:-.} | tee -a "$LOGFILE"
yamllint "${options[@]}" ${INPUT_FILE_OR_DIR:-.}
# | tee -a "$LOGFILE"
shopt -u globstar