From c64efa38b841c6d1738268ec4f15b1a2d2b96074 Mon Sep 17 00:00:00 2001 From: "https://johntran038.github.io" <243246271+tngoc3395-stack@users.noreply.github.com> Date: Tue, 28 Jul 2026 12:24:47 -0700 Subject: [PATCH 1/4] Create glucose --- glucose | 1 + 1 file changed, 1 insertion(+) create mode 100644 glucose diff --git a/glucose b/glucose new file mode 100644 index 000000000000000..8b137891791fe96 --- /dev/null +++ b/glucose @@ -0,0 +1 @@ + From 538afcab12e34fbcb241e556a6afe2a493be5c56 Mon Sep 17 00:00:00 2001 From: "https://johntran038.github.io" <243246271+tngoc3395-stack@users.noreply.github.com> Date: Tue, 28 Jul 2026 14:41:52 -0700 Subject: [PATCH 2/4] Add files via upload --- John Tran.csv | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 John Tran.csv diff --git a/John Tran.csv b/John Tran.csv new file mode 100644 index 000000000000000..1f6ca4f7e7d196f --- /dev/null +++ b/John Tran.csv @@ -0,0 +1,13 @@ +"Created By","Title","Name","Relation","Phone" +"John Ngoc Tran","Relation","Ellyn Dang","Granddaughter", +"John Ngoc Tran","Relation","Felix","Grandson", +"John Ngoc Tran","Relation","Elaine Dang","Granddaughter","559-305-9988" +"John Ngoc Tran","Relation","Hoa Tran","Brother","559-341-5424" +"John Ngoc Tran","Relation","Chuc Tran","Brother","559-387-6128" +"John Ngoc Tran","Relation","Huu Tran","Brother","559-387-7782" +"John Ngoc Tran","Relation","Jocelyn Tran","Daughter","559-391-7996" +"John Ngoc Tran","Relation","Danny Dang","Son in law","559-391-7997" +"John Ngoc Tran","Relation","Binh Tran","Brother","559-701-5275" +"John Ngoc Tran","Relation","Evelyn Dang","Granddaughter","559-724-7565" +"John Ngoc Tran","Relaton","John Ngoc Tran","Father","916-588-7564" +"John Ngoc Tran","Relation","Ngan Nguyen","Wife","916-588-7569" From 03887af298f71bfaa87b4a9db5bcb16af95b3471 Mon Sep 17 00:00:00 2001 From: "https://johntran038.github.io" <243246271+tngoc3395-stack@users.noreply.github.com> Date: Tue, 28 Jul 2026 17:07:45 -0700 Subject: [PATCH 3/4] Add GitHub Actions workflow for Python application This workflow installs Python dependencies, runs linting with flake8, and executes tests with pytest on push and pull request events. Signed-off-by: https://johntran038.github.io <243246271+tngoc3395-stack@users.noreply.github.com> --- .github/workflows/python-app.yml | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/python-app.yml diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml new file mode 100644 index 000000000000000..1168bd9ad833dbe --- /dev/null +++ b/.github/workflows/python-app.yml @@ -0,0 +1,39 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python application + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest From e6c08888eac0e957f8d90c2d23d6cce957e27cfa Mon Sep 17 00:00:00 2001 From: "https://johntran038.github.io" <243246271+tngoc3395-stack@users.noreply.github.com> Date: Wed, 29 Jul 2026 14:02:55 -0700 Subject: [PATCH 4/4] Add files via upload Signed-off-by: https://johntran038.github.io <243246271+tngoc3395-stack@users.noreply.github.com> --- python-app.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 python-app.yml diff --git a/python-app.yml b/python-app.yml new file mode 100644 index 000000000000000..1168bd9ad833dbe --- /dev/null +++ b/python-app.yml @@ -0,0 +1,39 @@ +# This workflow will install Python dependencies, run tests and lint with a single version of Python +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python + +name: Python application + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Lint with flake8 + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest