Skip to content

Commit

Permalink
Merge pull request #13 from actlaboratory/cat/actions
Browse files Browse the repository at this point in the history
pull_request の CI ではテストだけ実行する
  • Loading branch information
yncat authored Jan 6, 2024
2 parents 4bd1c0c + 4828f21 commit 3257670
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions .github/workflows/pullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3257670

Please sign in to comment.