From 06443b66699c14a71ea6e0407ad0044e4d5f45b1 Mon Sep 17 00:00:00 2001 From: arcane_nx Date: Sun, 3 May 2026 11:34:21 +0100 Subject: [PATCH 1/4] test --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c2bec0368b7..75430478be8 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! +arcane version of Boot.dev's Notely app. From ff98a39974a9209807d298801bb3dab52ed4f634 Mon Sep 17 00:00:00 2001 From: arcane_nx Date: Sun, 3 May 2026 11:47:18 +0100 Subject: [PATCH 2/4] fail test --- .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..c3db7596c77 --- /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.26.0" + + - name: Force Failure + run: (exit 1) From e2ec6b4b1daadf04c4ab2059755fb9cf7ba942fc Mon Sep 17 00:00:00 2001 From: arcane_nx Date: Sun, 3 May 2026 11:51:34 +0100 Subject: [PATCH 3/4] go version --- .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 c3db7596c77..12e4e256428 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 - run: (exit 1) + - name: go version + run: go version From 742ac71c8f2eac48b20cfc210b720dac52f0953f Mon Sep 17 00:00:00 2001 From: arcane_nx Date: Sun, 3 May 2026 12:15:39 +0100 Subject: [PATCH 4/4] test --- .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 12e4e256428..400557c648c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,4 @@ jobs: go-version: "1.26.0" - name: go version - run: go version + run: go test ./...