File size: 2,751 Bytes
0e1a481 d580970 1ec2fb6 d88ad14 31471a4 d88ad14 31471a4 279c0fc 31471a4 c86cdf9 31471a4 af06305 31471a4 c86cdf9 31471a4 c86cdf9 d88ad14 e4f6cdb c86cdf9 d88ad14 afc4527 d88ad14 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# Copyright Jiaqi Liu
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
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 }}
|