From b0019a0e359ea2156db546bc77893e3126f481df Mon Sep 17 00:00:00 2001 From: snuweb <43720122+snuweb@users.noreply.github.com> Date: Wed, 24 Dec 2025 20:39:08 +0100 Subject: [PATCH 1/6] saadaq's version of bootdev --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b7..eafab289e5b 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! + +Saadaq's version of Boot.dev's Notely app. \ No newline at end of file From fd1b44c68d92f5261802ee5c21b887e5841b3604 Mon Sep 17 00:00:00 2001 From: snuweb <43720122+snuweb@users.noreply.github.com> Date: Wed, 24 Dec 2025 20:47:48 +0100 Subject: [PATCH 2/6] pull request test --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b7..d1ff251e462 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! +Saadaq's version of Boot.dev's Notely app \ No newline at end of file From 02502fe5f0889afdf49659e5ab285ea4ce90d24e Mon Sep 17 00:00:00 2001 From: snuweb <43720122+snuweb@users.noreply.github.com> Date: Wed, 24 Dec 2025 21:42:51 +0100 Subject: [PATCH 3/6] 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 00000000000..a54d8248d54 --- /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) \ No newline at end of file From a4bf9fdd52ab876f07384c081d7e1235da7f867d Mon Sep 17 00:00:00 2001 From: snuweb <43720122+snuweb@users.noreply.github.com> Date: Wed, 24 Dec 2025 21:50:37 +0100 Subject: [PATCH 4/6] 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..a54d8248d54 --- /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) \ No newline at end of file From 8d5d515867e3a588b9d522a32091dee1bd50998f Mon Sep 17 00:00:00 2001 From: snuweb <43720122+snuweb@users.noreply.github.com> Date: Wed, 24 Dec 2025 21:51:14 +0100 Subject: [PATCH 5/6] Fix workflow filename --- .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 a54d8248d54..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.25.1" - - - name: Force Failure - run: (exit 1) \ No newline at end of file From da45cd3959827c230ce0ef359c32f06d77f81495 Mon Sep 17 00:00:00 2001 From: snuweb <43720122+snuweb@users.noreply.github.com> Date: Fri, 26 Dec 2025 00:44:29 +0100 Subject: [PATCH 6/6] removed (exit 1) --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a54d8248d54..da0999db14b 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) \ No newline at end of file + run: go version \ No newline at end of file diff --git a/README.md b/README.md index 03651d44bb8..eafab289e5b 100644 --- a/README.md +++ b/README.md @@ -22,4 +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! -Saadaq's version of Boot.dev's Notely app. +Saadaq's version of Boot.dev's Notely app. \ No newline at end of file