imseldrith commited on
Commit
3faea15
·
verified ·
1 Parent(s): c001152

Delete .github

Browse files
.github/FUNDING.yml DELETED
@@ -1,2 +0,0 @@
1
- github: henryruhs
2
- custom: https://paypal.me/henryruhs
 
 
 
.github/preview.png DELETED

Git LFS Details

  • SHA256: 90f9882b1a3fd51272d42384f5f7a84082749eaf2fb874125b942af077045801
  • Pointer size: 132 Bytes
  • Size of remote file: 1.1 MB
.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