From 4f5810665d306eb207c5d2e7d5f6225b9d09fa50 Mon Sep 17 00:00:00 2001 From: DevJoshBrown Date: Tue, 4 Aug 2026 08:15:00 +0100 Subject: [PATCH 1/2] personalised readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b..082d711344 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! + +Josh's version of Boot.dev's Notely app. \ No newline at end of file From bcb728d2ca4c4530c1eb5561488569513a8dab65 Mon Sep 17 00:00:00 2001 From: DevJoshBrown Date: Tue, 4 Aug 2026 08:32:04 +0100 Subject: [PATCH 2/2] add ci.yml --- .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..664032071d --- /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) \ No newline at end of file