From 91bcc877055d4a46ef2a22b6ced1855c2ea15bd7 Mon Sep 17 00:00:00 2001 From: Johnson Sun Date: Sat, 10 Aug 2024 21:53:05 +0800 Subject: [PATCH] docs: Add test and coverage badges --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 803628a..a38b3dd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Nurse Scheduling System (護理排班系統) +[![tests](https://img.shields.io/github/actions/workflow/status/j3soon/nurse-scheduling/test-core.yaml?label=tests)](https://github.com/j3soon/nurse-scheduling/actions/workflows/test-core.yaml) +[![codecov](https://codecov.io/github/j3soon/nurse-scheduling/graph/badge.svg?token=DPOvtAW1k2)](https://codecov.io/github/j3soon/nurse-scheduling) + The nurse scheduling (or employee scheduling) problem is a well-known problem in the field of operations research (OR) and can be (approximately) solved efficiently by constrained optimization. However, the constraints vary significantly across hospitals or wards. Therefore, in practice, the problem is often solved by hand or with the help of Excel, which is really time-consuming. The entire process requires several hours or even more than ten hours, depending on the problem complexity (e.g., multiple wards).