From 61bc77a37996bdf5fe01af6b8ae847ec122c0edd Mon Sep 17 00:00:00 2001 From: RogerFerrandiz <70776113+RogerFerrandiz@users.noreply.github.com> Date: Fri, 3 Jan 2025 19:49:35 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b..744107cd2f 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! +Roger's version of Boot.dev's Notely app. From 8be0de82abe96b90ec05b6a23055699865e66821 Mon Sep 17 00:00:00 2001 From: roger Date: Fri, 3 Jan 2025 20:05:57 +0100 Subject: [PATCH 2/3] =?UTF-8?q?no=20s=C3=A9=20ja=20qu=C3=A8=20faig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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..99ceb2f807 --- /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.23.0" + + - name: Force Failure + run: (exit 1) From 53a8001b206f8cdd9d540ca8d723db843064297f Mon Sep 17 00:00:00 2001 From: roger Date: Fri, 3 Jan 2025 20:22:36 +0100 Subject: [PATCH 3/3] =?UTF-8?q?no=20s=C3=A9=20ja=20qu=C3=A8=20faig=202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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 99ceb2f807..7619fa08b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,5 @@ jobs: with: go-version: "1.23.0" - - name: Force Failure - run: (exit 1) + - name: Happy end + run: go version