From 4828f2179782a93891f687bc47078a6008f0d3da Mon Sep 17 00:00:00 2001 From: Yukio Nozawa Date: Sat, 6 Jan 2024 22:32:46 +0900 Subject: [PATCH] =?UTF-8?q?pull=5Frequest=20=E3=81=AE=20CI=20=E3=81=A7?= =?UTF-8?q?=E3=81=AF=E3=83=86=E3=82=B9=E3=83=88=E3=81=A0=E3=81=91=E5=AE=9F?= =?UTF-8?q?=E8=A1=8C=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pullRequest.yml | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pullRequest.yml b/.github/workflows/pullRequest.yml index 9284177..c479c84 100644 --- a/.github/workflows/pullRequest.yml +++ b/.github/workflows/pullRequest.yml @@ -6,5 +6,24 @@ on: - master jobs: - build: - uses: ./.github/workflows/testAndBuild.yml + test: + runs-on: windows-latest + + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + architecture: x86 + python-version: 3.8 + cache: pip + + - name: Install requirements + run: | + python -m pip install -r requirements.txt + + - name: Test + run: | + python -m unittest discover test