From f97366de98d9bde64ad8645445ed49ae1432db10 Mon Sep 17 00:00:00 2001 From: Marcus Wyche Date: Mon, 3 Nov 2025 10:50:19 -0500 Subject: [PATCH 1/3] Updates for more formatting --- .github/workflows/uv-ci.yml | 25 ------------------------- README.md | 5 ++++- java/README.md | 2 +- python/README.md | 1 + 4 files changed, 6 insertions(+), 27 deletions(-) delete mode 100644 .github/workflows/uv-ci.yml diff --git a/.github/workflows/uv-ci.yml b/.github/workflows/uv-ci.yml deleted file mode 100644 index 5b59433..0000000 --- a/.github/workflows/uv-ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Python CI with UV -run-name: ${{ github.actor }} running python(uv) CI -on: [push] -jobs: - uv-example: - name: python - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v5 - - - name: Install uv - uses: astral-sh/setup-uv@v6 - with: - # Install a specific version of uv. - version: "0.9.6" - - name: Where Am I - run: pwd && ls -l - - # - name: Install the Dependencies - # run: uv sync --directory python/python-examples --locked --all-extras --dev - - - name: Run tests - # For example, using `pytest` - run: uv run --directory python/python-examples pytest \ No newline at end of file diff --git a/README.md b/README.md index c835685..21418bd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ +![java workflow](https://github.com/datadidit/sandbox/actions/workflows/maven-ci.yml/badge.svg) ![python workflow](https://github.com/datadidit/sandbox/actions/workflows/python-uv-ci.yml/badge.svg) + # Sandbox Mono repo for all public development -[Java Example](./java): Examples for java. +[Java](./java): Sandbox for all Java public development. +[Python](./python): Sandbox for all Python public development. diff --git a/java/README.md b/java/README.md index e5d5753..852038f 100644 --- a/java/README.md +++ b/java/README.md @@ -1,4 +1,4 @@ -![example workflow](https://github.com/datadidit/sandbox/actions/workflows/maven-ci.yml/badge.svg) +![java workflow](https://github.com/datadidit/sandbox/actions/workflows/maven-ci.yml/badge.svg) # Java Sandbox Somewhere to put any Java code I'm playing with. \ No newline at end of file diff --git a/python/README.md b/python/README.md index 5458e50..172f044 100644 --- a/python/README.md +++ b/python/README.md @@ -1,3 +1,4 @@ +![python workflow](https://github.com/datadidit/sandbox/actions/workflows/python-uv-ci.yml/badge.svg) # Python workspace ## Notes From d3787bdc2edf3ee9cd616809cc4d082ca82a1229 Mon Sep 17 00:00:00 2001 From: Marcus Wyche Date: Mon, 3 Nov 2025 10:51:12 -0500 Subject: [PATCH 2/3] Adding in updated workflow file --- .github/workflows/python-uv-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/python-uv-ci.yml diff --git a/.github/workflows/python-uv-ci.yml b/.github/workflows/python-uv-ci.yml new file mode 100644 index 0000000..7de88d0 --- /dev/null +++ b/.github/workflows/python-uv-ci.yml @@ -0,0 +1,19 @@ +name: Python CI with UV +run-name: ${{ github.actor }} running python(uv) CI +on: [push] +jobs: + uv-example: + name: python + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v5 + + - name: Install uv + uses: astral-sh/setup-uv@v6 + with: + # Install a specific version of uv. + version: "0.9.6" + - name: Run tests + # For example, using `pytest` + run: uv run --directory python/python-examples pytest \ No newline at end of file From 717b05758b682e24040322e94a4f8546dd956f8d Mon Sep 17 00:00:00 2001 From: Marcus Wyche Date: Mon, 3 Nov 2025 10:53:04 -0500 Subject: [PATCH 3/3] Minor updates to readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 21418bd..76b38b7 100644 --- a/README.md +++ b/README.md @@ -4,5 +4,5 @@ Mono repo for all public development -[Java](./java): Sandbox for all Java public development. -[Python](./python): Sandbox for all Python public development. +* [Java](./java): Sandbox for all Java public development. +* [Python](./python): Sandbox for all Python public development.