From 2a395c06317da924ad81a043bb8bfb5c325a877c Mon Sep 17 00:00:00 2001 From: "WillBooster Inc." Date: Thu, 5 Sep 2024 18:43:12 +0000 Subject: [PATCH] chore: willboosterify this repo --- .github/pull_request_template.md | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 856d2f7..f9cd3e5 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -2,16 +2,43 @@ Close # ## Self Check -- [ ] I've confirmed `All checks have passed` on PR page. (You may leave this box unchecked due to long workflows.) +- [ ] I've confirmed `All checks have passed` on this page. (このページで `All checks have passed` が表示されていることを確認した。) + - You may leave this box unchecked due to long workflows. - PR title follows [Angular's commit message format](https://github.com/angular/angular/blob/main/CONTRIBUTING.md#-commit-message-format). - PR title doesn't have `WIP:`. - All tests are passed. - Test command (e.g., `yarn test`) is passed. - Lint command (e.g., `yarn lint`) is passed. -- [ ] I've reviewed my changes on PR's diff view. +- [ ] I've reviewed my changes on GitHub PR's diff view. (GitHub上で自分の変更内容を確認した。) +- [ ] I've written the steps to test. (テスト手順を記載した。) +- [ ] I've added screenshots. (UIを変更した場合、スクリーンショットを追加した。) + - You may leave this box unchecked if you didn't modify the UI. + +## Steps to Test + +1. Open http://localhost-exercode.willbooster.net:3000/ja-JP/courses/_example/lessons/_example_a_plus_b/problems/_example_a_plus_b after login. +2. Select the language `C`. +3. Write the following code: + + ```c + #include + + int main(void) { + int a, b; + + scanf("%d %d", &a, &b); + printf("%d", a + b); + return 0; + } + ``` + +4. Push `Submit` button. +5. ... + +