mirror of
https://github.com/valitydev/base-workflows.git
synced 2024-11-06 09:25:18 +00:00
23 lines
379 B
YAML
23 lines
379 B
YAML
name: Basic linters
|
|
|
|
on:
|
|
workflow_call:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
|
|
jobs:
|
|
yamllint:
|
|
name: yamllint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: ⤵️ Check out code from GitHub
|
|
uses: actions/checkout@v2
|
|
|
|
- name: 🚀 Run yamllint
|
|
uses: frenck/action-yamllint@v1
|
|
with:
|
|
warnings: false
|