Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down