Spaces:
Running
Running
Delete .github
Browse files- .github/FUNDING.yml +0 -2
- .github/preview.png +0 -3
- .github/workflows/ci.yml +0 -34
.github/FUNDING.yml
DELETED
@@ -1,2 +0,0 @@
|
|
1 |
-
github: henryruhs
|
2 |
-
custom: https://paypal.me/henryruhs
|
|
|
|
|
|
.github/preview.png
DELETED
Git LFS Details
|
.github/workflows/ci.yml
DELETED
@@ -1,34 +0,0 @@
|
|
1 |
-
name: ci
|
2 |
-
|
3 |
-
on: [ push, pull_request ]
|
4 |
-
|
5 |
-
jobs:
|
6 |
-
lint:
|
7 |
-
runs-on: ubuntu-latest
|
8 |
-
steps:
|
9 |
-
- name: Checkout
|
10 |
-
uses: actions/checkout@v2
|
11 |
-
- name: Set up Python 3.10
|
12 |
-
uses: actions/setup-python@v2
|
13 |
-
with:
|
14 |
-
python-version: '3.10'
|
15 |
-
- run: pip install flake8
|
16 |
-
- run: pip install mypy
|
17 |
-
- run: flake8 run.py facefusion tests
|
18 |
-
- run: mypy run.py facefusion tests
|
19 |
-
test:
|
20 |
-
strategy:
|
21 |
-
matrix:
|
22 |
-
os: [ macos-latest, ubuntu-latest, windows-latest ]
|
23 |
-
runs-on: ${{ matrix.os }}
|
24 |
-
steps:
|
25 |
-
- name: Checkout
|
26 |
-
uses: actions/checkout@v2
|
27 |
-
- name: Set up ffmpeg
|
28 |
-
uses: FedericoCarboni/setup-ffmpeg@v2
|
29 |
-
- name: Set up Python 3.10
|
30 |
-
uses: actions/setup-python@v2
|
31 |
-
with:
|
32 |
-
python-version: '3.10'
|
33 |
-
- run: pip install -r requirements-ci.txt
|
34 |
-
- run: pytest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|