From 0d7585aeb74e9e63c277ee9e7a5b6a44294773fa Mon Sep 17 00:00:00 2001 From: YousefTBG Date: Sun, 7 Jun 2026 21:35:08 +0300 Subject: [PATCH 1/2] undo Lane's giant mistake --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b7..ed65ff7854c 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! +YousefTBG's version of Boot.dev's Notely app. From fae151a6ffbfe162dbf2371a740e9eb5656e9c80 Mon Sep 17 00:00:00 2001 From: YousefTBG Date: Mon, 8 Jun 2026 21:42:33 +0300 Subject: [PATCH 2/2] failute test --- .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)