Apply suggestions from code review
Use last version of setup-python action Remove unnecesarry multicommand from run Remove current directory from artifact paths Co-authored-by: Margen67 <Margen67@users.noreply.github.com>
This commit is contained in:
parent
a071079000
commit
694611cbd8
1 changed files with 4 additions and 5 deletions
9
.github/workflows/run_tests.yaml
vendored
9
.github/workflows/run_tests.yaml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
- name: Checkout Code
|
||||
uses: actions/checkout@v3
|
||||
- name: Set up Python 3.10
|
||||
uses: actions/setup-python@v3
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.10.6
|
||||
- uses: actions/cache@v2
|
||||
|
@ -21,13 +21,12 @@ jobs:
|
|||
restore-keys: |
|
||||
${{ runner.os }}-pip-
|
||||
- name: Run tests
|
||||
run: |
|
||||
python launch.py --tests basic_features --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test --clip-models-path ./test/test_files/empty.pt
|
||||
run: python launch.py --tests basic_features --no-half --disable-opt-split-attention --use-cpu all --skip-torch-cuda-test --clip-models-path ./test/test_files/empty.pt
|
||||
- name: Upload main app stdout-stderr
|
||||
uses: actions/upload-artifact@v3
|
||||
if: always()
|
||||
with:
|
||||
name: stdout-stderr
|
||||
path: |
|
||||
./test/stdout.txt
|
||||
./test/stderr.txt
|
||||
test/stdout.txt
|
||||
test/stderr.txt
|
||||
|
|
Loading…
Reference in a new issue