mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-15 14:17:58 +03:00
33 lines
726 B
YAML
33 lines
726 B
YAML
|
name: universe validation
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches-ignore:
|
||
|
- "spacy.io"
|
||
|
- "nightly.spacy.io"
|
||
|
- "v2.spacy.io"
|
||
|
paths:
|
||
|
- "website/meta/universe.json"
|
||
|
pull_request:
|
||
|
types: [opened, synchronize, reopened, edited]
|
||
|
paths:
|
||
|
- "website/meta/universe.json"
|
||
|
|
||
|
jobs:
|
||
|
validate:
|
||
|
name: Validate
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out repo
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Configure Python version
|
||
|
uses: actions/setup-python@v4
|
||
|
with:
|
||
|
python-version: "3.7"
|
||
|
architecture: x64
|
||
|
|
||
|
- name: Validate website/meta/universe.json
|
||
|
run: |
|
||
|
python .github/validate_universe_json.py website/meta/universe.json
|