From f13a6d9543e8554f2faaa8b0417a8e6adc38e28c Mon Sep 17 00:00:00 2001 From: ryudai Date: Mon, 2 Mar 2026 17:51:55 +0900 Subject: [PATCH] =?UTF-8?q?=E7=A9=BA=E3=81=AE=E3=83=86=E3=82=B9=E3=83=88?= =?UTF-8?q?=E7=94=A8=E3=83=AF=E3=83=BC=E3=82=AF=E3=83=95=E3=83=AD=E3=83=BC?= =?UTF-8?q?=E3=82=92=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run-test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/run-test.yml diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml new file mode 100644 index 0000000..a515b95 --- /dev/null +++ b/.github/workflows/run-test.yml @@ -0,0 +1,18 @@ +name: Test Backend + +on: + pull_request: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + # TODO: テストコマンドをここに追加してください + - name: Exec test + run: | + echo "TODO: add test command"