Skip to content

Update FLAGS formatting in README.md #121

Update FLAGS formatting in README.md

Update FLAGS formatting in README.md #121

Workflow file for this run

---
name: Lint GHA Files
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Lint files
uses: actions/checkout@v3
- run: echo "Running shell script lint!"
- run: find . -name "*.sh" -type f | xargs -I {} shellcheck --severity=error {}
- run: echo "Running yml file lint!"
- run: find . -name "*.yml" -type f | xargs -I {} yamllint {}