mirror of
https://github.com/Prowlarr/Indexers.git
synced 2026-05-01 05:41:13 +01:00
Bumps the github group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
595 B
YAML
33 lines
595 B
YAML
---
|
|
name: Yaml Validation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Yaml
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: yamllint version
|
|
run: |
|
|
yamllint --version
|
|
- name: yamllint run
|
|
run: |
|
|
yamllint definitions --format github
|
|
schema_validate:
|
|
name: Validate Schema
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: npm ci
|
|
- name: yaml schema check
|
|
run: |
|
|
bash ./scripts/validate.sh
|