mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-15 23:20:44 +00:00
20 lines
389 B
YAML
20 lines
389 B
YAML
# Lint all YAML
|
|
name: 🔎 Lint Yaml
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ opened, synchronize, reopened ]
|
|
|
|
jobs:
|
|
lint_yaml:
|
|
name: 🔎 Lint Yaml
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: 🚩 Checkout Repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: 🔎 Lint Yaml
|
|
uses: ibiqlik/action-yamllint@v3
|
|
continue-on-error: true # TODO: Remove after checks pass
|