added some tasks for soft stop and start and for showing logs #126
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 ." |