From 2593f4b2e16367af7ebcab09dd06bcc4088e1396 Mon Sep 17 00:00:00 2001 From: A-Hollings <146093739+A-Hollings@users.noreply.github.com> Date: Wed, 5 Aug 2026 09:07:59 +0100 Subject: [PATCH 1/3] Updated README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b..36fc82c8ba 100644 --- a/README.md +++ b/README.md @@ -21,3 +21,5 @@ 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! + +Alex's version of Boot.dev's Notely app. From 6cf7563af4093a3b6017e17b812d5ab0277e0456 Mon Sep 17 00:00:00 2001 From: A-Hollings <146093739+A-Hollings@users.noreply.github.com> Date: Thu, 6 Aug 2026 12:14:36 +0100 Subject: [PATCH 2/3] Added GitHub workflows functionality --- .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 0000000000..a2cf2a837a --- /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@v6 + + - name: Set up Go + uses: actions/setup-go@v6 + with: + go-version: "1.26.0" + + - name: Force Failure + run: (exit 1) From 5ade0a3b9e61d983c598941d36429381c27020c5 Mon Sep 17 00:00:00 2001 From: A-Hollings <146093739+A-Hollings@users.noreply.github.com> Date: Fri, 7 Aug 2026 07:56:47 +0100 Subject: [PATCH 3/3] Remove forced failure workflow --- .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 a2cf2a837a..8bc42674e7 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: Check Go Version + run: go version