From ee72de4f221af9c2e6bc9d5e4b8f570a4b3936da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Bj=C3=B8rn=20Greve?= Date: Mon, 11 Mar 2024 17:30:24 +0800 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7c728b5..3e00abb 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,8 @@ The project structure is as follows: ├── .github │ └── workflows │ ├── greetings.yml -│ ├── linux_cd.yml -│ └── windows_cd.yml +│ ├── linux.yml +│ └── windows.yml ├── src │ ├── hello.cppm │ └── main.cppm @@ -32,8 +32,8 @@ The project structure is as follows: ``` - `.github/workflows/`: Directory containing the CI/CD workflow files. - `greetings.yml`: Workflow file for greeting users on their first issue or pull request. - - `linux_cd.yml`: Workflow file for building and releasing the project on Linux (Ubuntu). - - `windows_cd.yml`: Workflow file for building and releasing the project on Windows. + - `linux.yml`: Workflow file for building and releasing the project on Linux (Ubuntu). + - `windows.yml`: Workflow file for building and releasing the project on Windows. - `src/`: Directory containing the source files of the project. - `tests/`: Directory containing the test files using GTest and GMock. - `xmake.lua`: The Xmake configuration file.