Add example .env file so unittests pass in CI environment
Some checks failed
Build Docker image / test (push) Failing after 2m40s
Build Docker image / build (push) Has been skipped

This commit is contained in:
Roman Krček
2024-10-14 09:16:07 +02:00
parent 3075743c5d
commit 7253745a50
2 changed files with 10 additions and 1 deletions

7
.env.example Normal file
View File

@@ -0,0 +1,7 @@
APP_ENV=DEV
API_ID=20798818
API_HASH=c657773dc9a68823d5ae2c69e66d9d09
BOT_TOKEN=6811299384:AAFPUDfE-bJyw8g4p01x6IhofXBBxgEd4es
STORAGE=/data
ALLOWED_IDS=1868160614
LOG_LEVEL=INFO

View File

@@ -24,7 +24,9 @@ jobs:
run: pip install tox>=4.16
- name: Run tox
run: tox
run: |
source .env.example
tox
build:
runs-on: ubuntu-latest