mirror of
https://github.com/PAPAMICA/docker-compose-collection.git
synced 2026-01-18 16:27:25 +01:00
19 lines
471 B
YAML
19 lines
471 B
YAML
name: pull_request
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
jobs:
|
|
check-yaml:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install yamllint
|
|
run: pip install yamllint
|
|
- name: Lint YAML files
|
|
run: yamllint --format github -d .github/workflows/conf_yaml ./composes-files/* |