Update Omnis to f65e26e0904b7ba902d89570e447dde32a2582f7 (#1587) #8277
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/ |