Skip to content

Testing another action #2

Testing another action

Testing another action #2

name: Validate cv.yml
on:
push:
branches:
- master
- main
paths:
- "_data/cv.yml"
pull_request:
branches:
- master
- main
paths:
- "_data/cv.yml"
workflow_dispatch:
jobs:
validate_cv:
# available images: https://github.com/actions/runner-images#available-images
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Validate cv.yml 🧪
uses: dsanders11/json-schema-validate-action
with:
files: "_data/cv.yml"
schema: "https://github.com/rendercv/rendercv/blob/main/schema.json?raw=true"