Skip to content

Commit fe863a9

Browse files
committed
Rename CI workflow to "Build / Test" and update docs
Renamed the workflow in ci.yml from "CI" to "Build / Test" for clarity. Updated all references in README.md, including the branch protection section, and added a status badge for the new workflow name. Clarified branch protection instructions to match the updated workflow.
1 parent 36f03b2 commit fe863a9

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: Build / Test
22

33
on:
44
push:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# KZDev.PerfUtils
22

3+
[![Build / Test](https://github.com/kzdev-net/kzdev.perfutils/actions/workflows/ci.yml/badge.svg)](https://github.com/kzdev-net/kzdev.perfutils/actions/workflows/ci.yml)
4+
35
This repository contains the ['KZDev.PerfUtils'](https://www.nuget.org/packages/KZDev.PerfUtils) NuGet package, which provides the following high-performance utilities:
46

57
- **MemoryStreamSlim**: A memory-efficient, high-performance stream for large or frequently resized in-memory buffers, modeled on **MemoryStream** with a largely compatible API.

Source/Tst/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ Add **`[Trait(TestConstants.TestTrait.TestMode, TestConstants.TestMode.Explicit)
6363

6464
---
6565

66-
## Maintainers: branch protection (CI)
66+
## Maintainers: branch protection (Build / Test)
6767

68-
Configure GitHub **branch protection** status checks to match how CI gates merges:
68+
Configure GitHub **branch protection** status checks to match how the workflow gates merges:
6969

70-
- **`main`:** Require **`test-standard`** and **`test-explicit`** from the **CI** workflow so both jobs must pass before merge.
70+
- **`main`:** Require **`test-standard`** and **`test-explicit`** from the **Build / Test** workflow so both jobs must pass before merge.
7171
- **`dev`:** Require **`test-standard`** only. **`test-explicit`** is informational on `dev` (workflow uses `continue-on-error` for pushes to `dev` and for pull requests whose base branch is not `main`).
7272

7373
Fork pull requests need repository settings that allow GitHub Actions to run from forks if you want CI for external contributors.

0 commit comments

Comments
 (0)