From f94fa91570ca2a9fb144fa2ff4d03a9bbceb5146 Mon Sep 17 00:00:00 2001 From: sjdevelop Date: Fri, 28 Jun 2024 23:45:58 +0530 Subject: [PATCH 1/4] Update README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c2bec0368b7..cb3015ac43d 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! + +some change, ignore From feb92082a856abe082012c9c75d763029472493d Mon Sep 17 00:00:00 2001 From: sjdevelop Date: Sat, 29 Jun 2024 01:17:10 +0530 Subject: [PATCH 2/4] ga --- .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..214925d98c0 --- /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@v4 + with: + go-version: '1.22' + + - name: Force Failure + run: (exit 1) From ce27a73848fae013aac0620fb5fa571733299512 Mon Sep 17 00:00:00 2001 From: sjdevelop Date: Sat, 29 Jun 2024 16:05:14 +0530 Subject: [PATCH 3/4] more change --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cb3015ac43d..ace2f984813 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! -some change, ignore +some change, ignore, more change From 66476b39cdee736d7a87971559adda73ed34e22b Mon Sep 17 00:00:00 2001 From: sjdevelop Date: Sat, 29 Jun 2024 16:08:32 +0530 Subject: [PATCH 4/4] resolve exit 1 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 214925d98c0..756459de7b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,6 @@ jobs: go-version: '1.22' - name: Force Failure - run: (exit 1) + run: | + go version + exit 0 \ No newline at end of file