Initial commit

This commit is contained in:
henryruhs
2024-10-11 23:36:16 +02:00
commit 1670eff879
22 changed files with 459 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
github: henryruhs
custom: [ buymeacoffee.com/henryruhs, paypal.me/henryruhs ]
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

+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.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- run: pip install flake8
- run: pip install flake8-import-order
- run: pip install mypy
- run: flake8 arcface_converter
- run: mypy arcface_converter