Update download-neo4j.yml #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: download-neo4j | |
on: [push] | |
jobs: | |
job_1: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Download Neo4j | |
run: | | |
curl -fsSL https://debian.neo4j.com/neotechnology.gpg.key |sudo gpg --dearmor -o /usr/share/keyrings/neo4j.gpg | |
echo "deb [signed-by=/usr/share/keyrings/neo4j.gpg] https://debian.neo4j.com stable 4.1" | sudo tee -a /etc/apt/sources.list.d/neo4j.list | |
sudo apt update | |
sudo apt install neo4j | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-tests.txt | |
- name: Download OSF files | |
run: | | |
echo 'Downloading OSF data...'; | |
osf -p 6jtc9 fetch Datasets/Datasets.zip Datasets.zip; | |
osf -p 6jtc9 fetch Datasets/petagraph_v5.zip petagraph_v5.zip; | |
unzip Datasets.zip; unzip petagraph_v5.zip; | |
echo 'Finished Downloading and unzipping....'; | |
ls | |
- name: Test neo4j | |
run: neo4j start | |