From 3da5adf30899c3eb6b7d8b6f853c9dcb738dbb72 Mon Sep 17 00:00:00 2001 From: DerekJCodes Date: Tue, 5 Aug 2025 01:15:52 -0400 Subject: [PATCH 1/3] Added my name to the end of the README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b..34c2143ea6 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! + +Derek's version of Boot.dev's Notely app. From 5f49a96c3827d4ab73934c77a71cb4e0f7c944c1 Mon Sep 17 00:00:00 2001 From: DerekJCodes Date: Tue, 5 Aug 2025 01:24:53 -0400 Subject: [PATCH 2/3] Simple, basic CI setup --- .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..f2a095cda6 --- /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 c4c124ba54cb7bd24a1d3effc950bf5b5a4d2719 Mon Sep 17 00:00:00 2001 From: DerekJCodes Date: Tue, 5 Aug 2025 02:46:53 -0400 Subject: [PATCH 3/3] Updated run --- .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 f2a095cda6..fc80190392 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,4 @@ jobs: go-version: "1.23.0" - name: Force Failure - run: (exit 1) \ No newline at end of file + run: go version \ No newline at end of file