mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
ecd85d2618
* update gh actions * pin typer upperbound to 1.0.0
33 lines
745 B
YAML
33 lines
745 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
|
|
if: github.repository_owner == 'explosion'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Configure Python version
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.7"
|
|
|
|
- name: Validate website/meta/universe.json
|
|
run: |
|
|
python .github/validate_universe_json.py website/meta/universe.json
|