20 lines
363 B
YAML
20 lines
363 B
YAML
name: CI Workflow
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*' # Exécute le workflow sur toutes les branches
|
|
|
|
jobs:
|
|
validate:
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install yamllint
|
|
run: |
|
|
pip install yamllint
|
|
|
|
- name: Validate YAML files
|
|
run: |
|
|
yamllint -c .yamllint .
|