Updating github actions for CI #8
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: build-neo4j | |
on: | |
push | |
jobs: | |
neo4j: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start Neo4J | |
run: docker compose -f "docker-compose.yml" up -d --build | |
- name: Stop containers | |
if: always() | |
run: docker compose -f "docker-compose.yml" down | |
# TODO: agregar cypher-shell y hacer cat 01-.....cypher | cypher-shell para probar el script |