summaryrefslogtreecommitdiffstats
path: root/.github/workflows/code-testing.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 09:01:56 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-17 09:01:56 +0000
commit89c4287dc1d423987b3ed83c28335bb3dcb0f06e (patch)
treeb2406a87652796c5a1622815061870d1c45322d5 /.github/workflows/code-testing.yml
parentAdding upstream version 0.15.0. (diff)
downloadanta-89c4287dc1d423987b3ed83c28335bb3dcb0f06e.tar.xz
anta-89c4287dc1d423987b3ed83c28335bb3dcb0f06e.zip
Adding upstream version 1.0.0.upstream/1.0.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows/code-testing.yml')
-rw-r--r--.github/workflows/code-testing.yml37
1 files changed, 13 insertions, 24 deletions
diff --git a/.github/workflows/code-testing.yml b/.github/workflows/code-testing.yml
index 5c06d45..d8b2879 100644
--- a/.github/workflows/code-testing.yml
+++ b/.github/workflows/code-testing.yml
@@ -59,30 +59,19 @@ jobs:
pip install .
- name: install dev requirements
run: pip install .[dev]
- missing-documentation:
- name: "Warning documentation is missing"
- runs-on: ubuntu-20.04
- needs: [file-changes]
- if: needs.file-changes.outputs.cli == 'true' && needs.file-changes.outputs.docs == 'false'
- steps:
- - name: Documentation is missing
- uses: GrantBirki/comment@v2.0.10
- with:
- body: |
- Please consider that documentation is missing under `docs/` folder.
- You should update documentation to reflect your change, or maybe not :)
- lint-yaml:
- name: Run linting for yaml files
- runs-on: ubuntu-20.04
- needs: [file-changes, check-requirements]
- if: needs.file-changes.outputs.code == 'true'
- steps:
- - uses: actions/checkout@v4
- - name: yaml-lint
- uses: ibiqlik/action-yamllint@v3
- with:
- config_file: .yamllint.yml
- file_or_dir: .
+ # @gmuloc: commenting this out for now
+ #missing-documentation:
+ # name: "Warning documentation is missing"
+ # runs-on: ubuntu-20.04
+ # needs: [file-changes]
+ # if: needs.file-changes.outputs.cli == 'true' && needs.file-changes.outputs.docs == 'false'
+ # steps:
+ # - name: Documentation is missing
+ # uses: GrantBirki/comment@v2.0.10
+ # with:
+ # body: |
+ # Please consider that documentation is missing under `docs/` folder.
+ # You should update documentation to reflect your change, or maybe not :)
lint-python:
name: Check the code style
runs-on: ubuntu-20.04