Skip to content

fix(image): import WanGP from pinned checkout #30

fix(image): import WanGP from pinned checkout

fix(image): import WanGP from pinned checkout #30

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install the package and test dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install pytest pytest-asyncio
- name: Check the license boundary
run: |
! grep -rn "shared.api\|import wgp\|mmgp" src tests scripts
- name: Run pytest
run: pytest -q