mirror of
https://github.com/Dictionarry-Hub/schema.git
synced 2026-05-03 18:24:17 +02:00
28 lines
503 B
YAML
28 lines
503 B
YAML
name: Validate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "*"
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
|
|
jobs:
|
|
validate-languages:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Validate Languages
|
|
run: ./scripts/validateLanguages.sh
|
|
|
|
validate-qualities:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Validate Qualities
|
|
run: ./scripts/validateQualities.sh
|