Skip to content

Update description of scope #195

Update description of scope

Update description of scope #195

Workflow file for this run

name: "Check yaml with Linter"
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install yamllint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Check yaml files
run: |
yamllint -c .github/workflows/config/yamllint.yaml --no-warnings .