lab3: CI/CD PR-gate for QuickNotes#1051
Open
1r444444 wants to merge 12 commits into
Open
Conversation
Signed-off-by: Irina <irina.bychkova06@mail.ru>
Signed-off-by: Irina <irina.bychkova06@mail.ru>
- Three independent jobs: go vet, go test -race, golangci-lint v2.5.0 - Runtime pinned to ubuntu-24.04; all third-party actions pinned by SHA - Go 1.23/1.24 build matrix with fail-fast: false - Module+build cache via actions/setup-go cache: true - Path filter: only app/** and ci.yml trigger the pipeline - ci-ok aggregation job as the single required branch-protection check - submissions/lab3.md with design question answers Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
actions/checkout v4.2.2 → v6.0.3 actions/setup-go v5.5.0 → v6.4.0 Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
go.mod declares minimum go 1.24; Go 1.23 with GOTOOLCHAIN=local refuses to run the module, causing vet and test to fail. Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
…gate Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
- Add green/red/fix CI run links - Add measured per-step timing table from actual runs - Add branch protection screenshot - Complete bottleneck analysis and before/after timing table Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
…ction evidence Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
This commit touches only submissions/lab3.md (outside app/ and .github/workflows/ci.yml), so the path filter prevents any CI run from being triggered — demonstrating Task 2.3. Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
Signed-off-by: Irina Bychkova <irina.bychkov411@gmail.com> Signed-off-by: Irina <irina.bychkova06@mail.ru>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Lab 3 — CI/CD: A PR-Gated Pipeline for QuickNotes
Path: GitHub Actions
What's included
.github/workflows/ci.yml— three independent jobs (vet,test,lint) +ci-okaggregation gatesubmissions/lab3.md— design question answers, timing table (to be filled after screenshots), bonus sectionPipeline features
main, pathsapp/**+ci.ymlubuntu-24.04(pinned)fail-fast: falsecontents: readat workflow levelactions/setup-gocache for module + build cachegolangci-lint v2.5.0(pinned)ci-okaggregation job — single required check for branch protection