From 3e4a13544fd7338028ab5aaba3c047cd5bff6886 Mon Sep 17 00:00:00 2001 From: Callum Dempsey Leach Date: Sat, 2 Mar 2024 22:13:56 +0000 Subject: [PATCH] feat: prettify readme --- .github/workflows/localhost_build.yml | 22 ++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 .github/workflows/localhost_build.yml diff --git a/.github/workflows/localhost_build.yml b/.github/workflows/localhost_build.yml new file mode 100644 index 0000000..ed04421 --- /dev/null +++ b/.github/workflows/localhost_build.yml @@ -0,0 +1,22 @@ +name: localhost + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Build and deploy (localhost) + run: | + make deploy DOCKER_COMPOSE_ARGS=-d + make healthcheck ENV=localhost diff --git a/README.md b/README.md index a83f71a..e95b792 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +![localhost/build](https://github.com/caldempsey/docker-notebook-spark-s3/actions/workflows/localhost_build.yml/badge.svg) + # DockerNotebookSparkS3 This repository provides a local experimental environment for data lakes and mock blob storage, leveraging PySpark and Spark clusters. It allows you to mimic Blob Storage locally and manage it with an Jupyter Notebook connected to a Spark Cluster closely emulating a real but simple environment.