|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--- |
|
name: CI/CD |
|
|
|
"on": |
|
pull_request: |
|
push: |
|
branches: |
|
- master |
|
|
|
jobs: |
|
yml-md-style-and-link-checks: |
|
uses: QubitPi/hashistack/.github/workflows/yml-md-style-and-link-checks.yml@master |
|
with: |
|
use-custom-yamllint-config-file: true |
|
use-custom-markdownlint-config-file: true |
|
|
|
cleanup-neo4j: |
|
if: github.ref == 'refs/heads/master' |
|
needs: yml-md-style-and-link-checks |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v3 |
|
with: |
|
fetch-depth: 0 |
|
- name: Set up Python 3.10 |
|
uses: actions/setup-python@v4 |
|
with: |
|
python-version: "3.10" |
|
- name: Cleanup |
|
run: | |
|
pip3 install --upgrade --force-reinstall wilhelm-python-sdk |
|
python3 .github/cleanup_neo4j.py |
|
env: |
|
NEO4J_URI: ${{ secrets.NEO4J_URI }} |
|
NEO4J_DATABASE: ${{ secrets.NEO4J_DATABASE }} |
|
NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME }} |
|
NEO4J_PASSWORD: ${{ secrets.NEO4J_PASSWORD }} |
|
|
|
load-vocabulary: |
|
name: Load ${{ matrix.language.name }} vocabularies |
|
if: github.ref == 'refs/heads/master' |
|
needs: cleanup-neo4j |
|
runs-on: ubuntu-latest |
|
strategy: |
|
fail-fast: false |
|
matrix: |
|
language: [ |
|
{ |
|
name: German, |
|
load-script: .github/load_german.py |
|
}, |
|
{ |
|
name: Ancient Greek, |
|
load-script: .github/load_ancient_greek.py |
|
}, |
|
{ |
|
name: Latin, |
|
load-script: .github/load_latin.py |
|
} |
|
] |
|
steps: |
|
- uses: actions/checkout@v3 |
|
with: |
|
fetch-depth: 0 |
|
- name: Set up Python 3.10 |
|
uses: actions/setup-python@v4 |
|
with: |
|
python-version: "3.10" |
|
- name: Load ${{ matrix.language.name }} |
|
run: | |
|
pip3 install --upgrade --force-reinstall wilhelm-python-sdk |
|
python3 ${{ matrix.language.load-script }} |
|
env: |
|
NEO4J_URI: ${{ secrets.NEO4J_URI }} |
|
NEO4J_DATABASE: ${{ secrets.NEO4J_DATABASE }} |
|
NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME }} |
|
NEO4J_PASSWORD: ${{ secrets.NEO4J_PASSWORD }} |
|
|