Skip to content

Merge pull request #55 from vil02/dependabot/docker/gitpod/workspace-… #177

Merge pull request #55 from vil02/dependabot/docker/gitpod/workspace-…

Merge pull request #55 from vil02/dependabot/docker/gitpod/workspace-… #177

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 .
...