Skip to content

Commit a96d730

Browse files
Update deploy.yml
1 parent 2d0edb1 commit a96d730

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,8 @@ jobs:
3131
3232
- name: 🗃️ Create test database
3333
run: |
34-
python -c '
35-
import sqlite3
36-
conn = sqlite3.connect("sites.db")
37-
conn.execute("CREATE TABLE IF NOT EXISTS sites (id INTEGER PRIMARY KEY, url TEXT)")
38-
conn.execute("CREATE TABLE IF NOT EXISTS logs (id INTEGER PRIMARY KEY, site_id INTEGER, status INTEGER)")
39-
conn.commit()
40-
conn.close()
41-
print("✅ DB created")
42-
'
34+
python -c 'import sqlite3; conn = sqlite3.connect("sites.db"); conn.execute("CREATE TABLE IF NOT EXISTS sites (id INTEGER PRIMARY KEY, url TEXT)"); conn.execute("CREATE TABLE IF NOT EXISTS logs (id INTEGER PRIMARY KEY, site_id INTEGER, status INTEGER)"); conn.commit(); conn.close()'
35+
echo "✅ DB created"
4336
4437
- name: 📁 Create dummy templates
4538
run: |

0 commit comments

Comments
 (0)