Skip to content

Commit

Permalink
TEST-resultsディレクトリを作成し、テストを実行するように変更
Browse files Browse the repository at this point in the history
  • Loading branch information
NEXTAltair committed Jun 22, 2024
1 parent 5087275 commit d073f49
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
pip install -r requirements.txt # 必要なライブラリをインストール
- name: Run TEST
run: python -m unittest discover -s TEST # テストを実行
run: |
mkdir TEST-results # TEST-resultsディレクトリを作成
python -m unittest discover -s TEST # テストを実行
- name: Upload test results
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit d073f49

Please sign in to comment.