From b5899bd5b006aebb63937f01129c172d927b5c0b Mon Sep 17 00:00:00 2001 From: dabiri1377 Date: Tue, 11 Aug 2026 13:37:29 +0330 Subject: [PATCH 1/4] add my name to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b..c20bed9a7c 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! +moh's version of Boot.dev's Notely app. From a5cc92e2d1991b9b0963b77b71e7e39eccf90ef2 Mon Sep 17 00:00:00 2001 From: dabiri1377 Date: Tue, 11 Aug 2026 15:31:15 +0330 Subject: [PATCH 2/4] add ci --- .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 b9708ed96194eb7d99484f66b79031ea3073737a Mon Sep 17 00:00:00 2001 From: dabiri1377 Date: Tue, 11 Aug 2026 15:52:30 +0330 Subject: [PATCH 3/4] fix ci/cd --- .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 a2cf2a837a..313f324c8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,4 @@ jobs: go-version: "1.26.0" - name: Force Failure - run: (exit 1) + run: (go version) From 0fa8db79224381a13362b4aeac7d7b43898cc7ca Mon Sep 17 00:00:00 2001 From: dabiri1377 Date: Tue, 11 Aug 2026 15:54:03 +0330 Subject: [PATCH 4/4] fix ci/cd --- .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 313f324c8e..6000ffd782 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 + - name: Show version run: (go version)