From 5f0839a9dd7b1f148fdfe805ca66cb1fc234d2af Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Tue, 17 Mar 2026 15:42:11 -0700 Subject: [PATCH 01/12] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b7..fc168b09d16 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,4 @@ go build -o notely && ./notely *This starts the server in non-database mode.* It will serve a simple webpage at `http://localhost:8080`. You do *not* need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! +OP's From 1a8003a1d8f269019daff55c06791e1e07a2b0c7 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Tue, 17 Mar 2026 15:50:02 -0700 Subject: [PATCH 02/12] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b7..c67ebdf9f99 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,4 @@ go build -o notely && ./notely *This starts the server in non-database mode.* It will serve a simple webpage at `http://localhost:8080`. You do *not* need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! +facepalmprime's version of Boot.dev's Notely app. From c55892095fafa1abc6735a3d58d80efe5f6b80a1 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Tue, 17 Mar 2026 16:01:13 -0700 Subject: [PATCH 03/12] automated workflow --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000000..d7e139347fc --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: ci + +on: + pull_request: + branches: [main] + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/checkout@v4 + with: + go-version: "1.26.0" + + - name: Force Failure + run: (exit 1) From 5ec13d19a544884d1bc7527859bde7bde084b115 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Tue, 17 Mar 2026 16:12:43 -0700 Subject: [PATCH 04/12] updated v2 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7e139347fc..971b8cdef84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Go - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: go-version: "1.26.0" From b9ddbb9b4db261a069d5e57247f9ea32c721bfa0 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Tue, 17 Mar 2026 16:19:17 -0700 Subject: [PATCH 05/12] update v3 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 971b8cdef84..10b3ab82311 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Go - uses: actions/checkout@v5 + uses: actions/Setup-go@v5 with: go-version: "1.26.0" From 258c96622af6d41bfa4b1f674177172e34682177 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Tue, 17 Mar 2026 16:21:51 -0700 Subject: [PATCH 06/12] update v4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10b3ab82311..c3db7596c77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - name: Set up Go - uses: actions/Setup-go@v5 + uses: actions/setup-go@v5 with: go-version: "1.26.0" From 7f945abd60f56412d3753f01785fb0ba7d814ba7 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Tue, 17 Mar 2026 16:42:54 -0700 Subject: [PATCH 07/12] trigger workflow --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c67ebdf9f99..16567b80807 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,4 @@ go build -o notely && ./notely You do *not* need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! facepalmprime's version of Boot.dev's Notely app. + From 35cb9b7fa9faeaa2a68ed9f65b3974f45249d332 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Wed, 18 Mar 2026 13:00:04 -0700 Subject: [PATCH 08/12] name change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc168b09d16..9a64a92c6c1 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,4 @@ go build -o notely && ./notely *This starts the server in non-database mode.* It will serve a simple webpage at `http://localhost:8080`. You do *not* need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! -OP's +facepalmprimes's version of Boot.dev's Notely app. From 991d8db61a15a2d95cb8bfff283e1416aaab45aa Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Wed, 18 Mar 2026 13:15:41 -0700 Subject: [PATCH 09/12] remove ci.yml --- .github/workflows/ci.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index c3db7596c77..00000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: ci - -on: - pull_request: - branches: [main] - -jobs: - tests: - name: Tests - runs-on: ubuntu-latest - - steps: - - name: Check out code - uses: actions/checkout@v4 - - - name: Set up Go - uses: actions/setup-go@v5 - with: - go-version: "1.26.0" - - - name: Force Failure - run: (exit 1) From 1a7ed70370fce31793e4206a014a1dfe8ff8f583 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Wed, 18 Mar 2026 14:11:48 -0700 Subject: [PATCH 10/12] Add name to README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fc168b09d16..9a64a92c6c1 100644 --- a/README.md +++ b/README.md @@ -21,4 +21,4 @@ go build -o notely && ./notely *This starts the server in non-database mode.* It will serve a simple webpage at `http://localhost:8080`. You do *not* need to set up a database or any interactivity on the webpage yet. Instructions for that will come later in the course! -OP's +facepalmprimes's version of Boot.dev's Notely app. From 61af3af72b51a56cf6abf2f2910a0c740e4d6f49 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Wed, 18 Mar 2026 14:23:48 -0700 Subject: [PATCH 11/12] Add CI workflow --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000000..c3db7596c77 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,22 @@ +name: ci + +on: + pull_request: + branches: [main] + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: "1.26.0" + + - name: Force Failure + run: (exit 1) From ba88041250a2326fcd3454a4d6997d9efa6f99e4 Mon Sep 17 00:00:00 2001 From: facepalmprime Date: Wed, 18 Mar 2026 14:30:50 -0700 Subject: [PATCH 12/12] update CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c3db7596c77..d63bfcb7a08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,5 @@ jobs: with: go-version: "1.26.0" - - name: Force Failure - run: (exit 1) + - name: go run + run: go version