Update Omnis to 590edc3b51d2e8aab0280d5a9eb0da9d2248e08e (#1586) #8276
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/ |