Skip to content

Commit

Permalink
Add workflow for yaml validation
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasjelonek authored Apr 11, 2024
1 parent 88a764e commit 265f838
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/yaml_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: json-yaml-validate
on:
push:
branches:
- main
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
json-yaml-validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: json-yaml-validate
id: json-yaml-validate
uses: GrantBirki/[email protected]
with:
use_dot_match: false
files: "ssh_keys.yaml"

0 comments on commit 265f838

Please sign in to comment.