Merge pull request #92 from Haidra-Org/comfy-10_11_23 #34
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.py' | |
- '**.json' | |
- 'tox.ini' | |
- '.github/workflows/maintests.yml' | |
- '.github/workflows/prtests.yml' | |
- '.github/workflows/release.yml' | |
jobs: | |
build: | |
runs-on: self-hosted | |
env: | |
HORDELIB_TESTING: "no-cuda" | |
TESTS_ONGOING: "1" | |
strategy: | |
matrix: | |
python: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install tox and any other packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade -r requirements.dev.txt | |
- name: Run lint/format/mypy check | |
run: tox -e pre-commit | |
- name: Check build_helper.py hordelib imports have no breaking dependency changes | |
run: tox -e test-build-helper | |
- name: Build unit test environment, confirm CUDA is available on host | |
run: tox -e tests -- -k test_cuda | |
- name: Run unit tests | |
run: tox -e tests | |
- name: Create CI webpage of results | |
run: python -m examples.make_index | |
- name: Upload to S3 | |
uses: shallwefootball/s3-upload-action@master | |
id: S3 | |
with: | |
aws_key_id: ${{secrets.S3_BUILD_ARTIFACTS_ACCESS_KEY_ID}} | |
aws_secret_access_key: ${{secrets.S3_BUILD_ARTIFACTS_SECRET_ACCESS_KEY}} | |
aws_bucket: hordelib | |
endpoint: ${{secrets.S3_ENDPOINT}} | |
source_dir: images/ | |
destination_dir: '' |