Skip to content

Bump gitpod/workspace-base #118

Bump gitpod/workspace-base

Bump gitpod/workspace-base #118

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@master
- name: Install yamllint
run: sudo apt-get install yamllint
- name: Display yamllint version
run: yamllint --version
- name: run yamllint
run: yamllint --strict .
...