Skip to content

chore(deps): update lycheeverse/lychee-action action to v2.1.0 #174

chore(deps): update lycheeverse/lychee-action action to v2.1.0

chore(deps): update lycheeverse/lychee-action action to v2.1.0 #174

Workflow file for this run

---
name: yaml_check
'on': [workflow_dispatch, push]
jobs:
run_yamllint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install yamllint
run: sudo apt-get install yamllint
- name: Display yamllint version
run: yamllint --version
- name: run yamllint
run: yamllint --strict .
...