mirror of https://github.com/vladmandic/automatic
21 lines
442 B
YAML
21 lines
442 B
YAML
name: Run basic features tests on CPU with empty SD model
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.10.6
|
|
cache: pip
|
|
cache-dependency-path: requirements.txt
|
|
- name: Run tests
|
|
run: python launch.py
|