Skip to content

added some tasks for soft stop and start and for showing logs #126

added some tasks for soft stop and start and for showing logs

added some tasks for soft stop and start and for showing logs #126

Workflow file for this run

---
name: "CI"
on: # yamllint disable
- "push"
- "pull_request"
jobs:
yamllint:
runs-on: "ubuntu-20.04"
steps:
- name: "Check out repository code"
uses: "actions/checkout@v2"
- name: "Set up Python"
uses: "actions/setup-python@v2"
id: "python-setup"
with:
python-version: "3.9"
- name: "Install yamllint"
run: "pip install yamllint"
- name: "Run yamllint"
run: "yamllint ."