From 52d83edc0d7418d457f3889f3f47301d4318e992 Mon Sep 17 00:00:00 2001 From: Eskild Brobak Date: Wed, 1 Oct 2025 15:44:27 +0200 Subject: [PATCH 1/4] added my name to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b..a257ccd1d5 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! + +Eskild's version of Boot.dev's Notely app. \ No newline at end of file From 68d76f80d433b27c3c4f3d7afe0feb458c93859e Mon Sep 17 00:00:00 2001 From: Eskild Brobak Date: Wed, 1 Oct 2025 15:49:40 +0200 Subject: [PATCH 2/4] added my name to readme again --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a257ccd1d5..7fb6d7fa3e 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! -Eskild's version of Boot.dev's Notely app. \ No newline at end of file +Eskild's version of Boot.dev's Notely app +1. \ No newline at end of file From c9fab03d4dac0ab847728103ef9399d6af82bd48 Mon Sep 17 00:00:00 2001 From: Eskild Brobak Date: Wed, 1 Oct 2025 15:52:23 +0200 Subject: [PATCH 3/4] added github workflow yml file --- .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 0bf4754a1a9fd8e2601fb5924fb8a1e0351f1927 Mon Sep 17 00:00:00 2001 From: Eskild Brobak Date: Wed, 1 Oct 2025 15:54:39 +0200 Subject: [PATCH 4/4] Fixed tests --- .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 a54d8248d5..da0999db14 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