Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/test-ibcli-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name: "ibcli integration"



on: # yamllint disable-line rule:truthy
pull_request:
branches:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,13 @@ jobs:
sudo apt install -y yamllint yq

- name: YAML Lint
# We only care about distro definitions for this check
run: |
find pkg/distro/defs "(" -iname "*.yaml" -or -iname "*.yml" ")" -exec yamllint --strict {} \+
find . "(" -iname "*.yaml" -or -iname "*.yml" ")" -exec yamllint --strict {} \+

- name: Check YAML definitions with yq
# yq will catch issues that yamllint will not, like duplicate anchros
# We only care about distro definitions for this check
run: |
find pkg/distro/defs "(" -iname "*.yaml" -or -iname "*.yml" ")" -exec yq . {} \+ > /dev/null
find . "(" -iname "*.yaml" -or -iname "*.yml" ")" -exec yq . {} \+ > /dev/null

bib-manifest-diff:
name: "bib manifest diff validation"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-osbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
name: "Update osbuild commit ID"

on:
on: # yamllint disable-line rule:truthy
workflow_dispatch:
schedule:
# Every Sunday at 12:00
Expand Down
Loading