Skip to content

WPVTWO-4516: added git tag and release workflow (#3) #13

WPVTWO-4516: added git tag and release workflow (#3)

WPVTWO-4516: added git tag and release workflow (#3) #13

Workflow file for this run

---
name: Lint Action file
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-yaml:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint . --strict