mirror of
https://github.com/DeterminateSystems/update-flake-lock.git
synced 2024-12-23 13:32:07 +01:00
20 lines
417 B
YAML
20 lines
417 B
YAML
name: CI
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
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"]
|
|
}
|