mirror of
https://github.com/thomasasfk/sd-webui-aspect-ratio-helper.git
synced 2026-02-25 17:34:10 +00:00
23 lines
355 B
YAML
23 lines
355 B
YAML
name: Run pytest
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install pytest
|
|
|
|
- name: Run pytest
|
|
run: pytest
|