mirror of
https://github.com/DeterminateSystems/update-flake-lock.git
synced 2024-12-23 13:32:07 +01:00
1e98f70b34
Bumps [nwisbeta/validate-yaml-schema](https://github.com/nwisbeta/validate-yaml-schema) from 1.0.3 to 2.0.0. - [Release notes](https://github.com/nwisbeta/validate-yaml-schema/releases) - [Commits](https://github.com/nwisbeta/validate-yaml-schema/compare/v1.0.3...v2.0.0) --- updated-dependencies: - dependency-name: nwisbeta/validate-yaml-schema dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
418 B
YAML
20 lines
418 B
YAML
name: CI
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Validate YAML
|
|
uses: nwisbeta/validate-yaml-schema@v2.0.0
|
|
with:
|
|
yamlSchemasJson: |
|
|
{
|
|
"https://json.schemastore.org/github-action.json": ["action.yml"]
|
|
}
|