Skip to content

chore(deps): bump gitpod/workspace-base #190

chore(deps): bump gitpod/workspace-base

chore(deps): bump gitpod/workspace-base #190

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