From b7d278ba814303f9b464083f7b302dc71f5c6dbb Mon Sep 17 00:00:00 2001 From: Miguel Acosta Date: Thu, 8 Jan 2026 15:17:05 -0300 Subject: [PATCH 1/4] add new changes --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b..52ec7bf0b3 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! + +"MYNAME's version of Boot.dev's Notely app. \ No newline at end of file From 9c4776b592d637080fc2c24d7e0feb081ace88dd Mon Sep 17 00:00:00 2001 From: Miguel Acosta Date: Thu, 8 Jan 2026 15:18:08 -0300 Subject: [PATCH 2/4] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 52ec7bf0b3..76bc70fa03 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! -"MYNAME's version of Boot.dev's Notely app. \ No newline at end of file +"MIGUEL's version of Boot.dev's Notely app. \ No newline at end of file From bd6946eb549d063fea01c7f9486802a6d2338450 Mon Sep 17 00:00:00 2001 From: Miguel Acosta Date: Thu, 8 Jan 2026 15:43:32 -0300 Subject: [PATCH 3/4] Add to correct branch --- .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..a54d8248d5 --- /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 3c22da2ca423e3ee2eed3736b0af5c61fbb69f22 Mon Sep 17 00:00:00 2001 From: Miguel Acosta Date: Thu, 8 Jan 2026 15:51:11 -0300 Subject: [PATCH 4/4] new changes --- .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 a54d8248d5..b6e2f87c25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,5 @@ jobs: with: go-version: "1.25.1" - - name: Force Failure - run: (exit 1) \ No newline at end of file + - name: Check version + run: go version \ No newline at end of file