Update Jibauni to 0da72231a3f7dcba891adb8c6bd240bb22398ca0 (#1585) #8275
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: Validate | |
on: | |
push: | |
schedule: | |
- cron: "0 */6 * * *" | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: yamllint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: manifests/ | |
check_urls: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
pip3 install setuptools wheel | |
pip3 install -r scripts/requirements.txt | |
- name: Check URLs | |
run: python3 scripts/check_urls.py manifests/ |