Skip to content

Update data_dict.md #98

Update data_dict.md

Update data_dict.md #98

# This is a basic workflow to help you get started with Actions
name: petagraph_qc_tests
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "run_qc"
run_qc:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: checkout repo (and lfs files!)
uses: actions/checkout@v3
with:
lfs: true
- name: Checkout LFS objects
run: |
git lfs checkout
ls data
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-tests.txt
- shell: bash
env:
NEO4J_PASSWORD: ${{ secrets.NEO4J_TAYLORLAB_PASSWORD }}
run: example-command tests --"$NEO4J_PASSWORD"
- name: Test with pytest
run: |
cd tests;
pytest tests.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html