From cbbbebcaa6d1d5007b6501a1f2b7c7321ac82c47 Mon Sep 17 00:00:00 2001 From: Zec-Wicks Date: Sun, 10 Aug 2025 18:45:22 +0930 Subject: [PATCH 1/2] Updated README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1701558..41c3834 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ A small Python tool to analyze fuel usage from a CSV, generate charts, and expor - `outputs/` — generated charts and reports - `pyproject.toml` — project metadata and dependencies -## Install (editable) +## Install ```bash python -m venv .venv From 502a9824714e43a0a477943dc02614ec6d62c4ab Mon Sep 17 00:00:00 2001 From: Zec-Wicks Date: Sun, 10 Aug 2025 18:48:43 +0930 Subject: [PATCH 2/2] GitHub workflow release.yml added --- .github/workflows/release.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f42a3b3 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,28 @@ +name: Dev Build + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + install: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: "3.11" + + - name: Install in editable mode + run: | + python -m pip install -U pip + pip install -e . + + - name: Run CLI (optional smoke test) + run: | + fueltrack --help