Resolves #6 動画の先頭からカットするとpart1のファイルが作られなくてエラーになるのを修正 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check for pull request into master | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
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 |