From a30c9195512d7971246f7cf01beae1f0cf8ef8cb Mon Sep 17 00:00:00 2001 From: AIex05 Date: Thu, 28 Aug 2025 17:22:27 -0400 Subject: [PATCH 1/3] added line to README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b..36fc82c8ba 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! + +Alex's version of Boot.dev's Notely app. From fea3c7b815caca4a97d4842e5477fca5d31e03d2 Mon Sep 17 00:00:00 2001 From: AIex05 Date: Thu, 28 Aug 2025 17:30:52 -0400 Subject: [PATCH 2/3] added test for 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 0000000000..f48b49e05b --- /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) \ No newline at end of file From 33dd213f2406dccf413289c8fc99fbb6b2fa9c28 Mon Sep 17 00:00:00 2001 From: AIex05 Date: Thu, 28 Aug 2025 17:38:10 -0400 Subject: [PATCH 3/3] new commit changed forced failure --- .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 f48b49e05b..d3c4eae011 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) \ No newline at end of file + - name: Run GOOOO + run: go version \ No newline at end of file