Initial commit

This commit is contained in:
henryruhs
2025-06-30 18:12:45 +02:00
commit 83d3ccdc7e
14 changed files with 245 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
name: ci
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install flake8
- run: pip install flake8-import-order
- run: pip install mypy
- run: flake8 facefusion_api
- run: mypy facefusion_api