From bc0c9b58165a43d285a66d5ba318aca0f252e53a Mon Sep 17 00:00:00 2001 From: louis Date: Tue, 24 Feb 2026 17:07:34 +0100 Subject: [PATCH 1/3] Change in README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b7..3409bcbf13d 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! +Louis's version of Boot.dev's Notely app. From 3d4383f9d4270efecc2a387644638b0d5d2714e4 Mon Sep 17 00:00:00 2001 From: louis Date: Fri, 27 Feb 2026 18:59:58 +0100 Subject: [PATCH 2/3] tests --- .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..249cc5258a3 --- /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.25.1" + + - name: Force Failure + run: (exit 1) From c80dc88860f47e25756f17a9cfa7346be4163498 Mon Sep 17 00:00:00 2001 From: louis Date: Sun, 1 Mar 2026 14:45:15 +0100 Subject: [PATCH 3/3] Update the last step of the job to run go version instead of (exit 1). That command should just print the current version of Go and exit with code 0. --- .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 249cc5258a3..a798a31acd4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,4 @@ jobs: go-version: "1.25.1" - name: Force Failure - run: (exit 1) + run: (exit 0)