File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
build-image :
11
- runs-on : ubuntu-20.04
11
+ runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout repository
14
14
uses : actions/checkout@v3
Original file line number Diff line number Diff line change
1
+ tmp
Original file line number Diff line number Diff line change @@ -37,13 +37,13 @@ class DBChanges(enum.StrEnum):
37
37
continue
38
38
39
39
match current_type :
40
- case DBChanges .ColumnAdded | DBChanges .ColumnDeleted | DBChanges . ColumnChanged :
40
+ case DBChanges .ColumnAdded | DBChanges .ColumnDeleted :
41
41
column_name = re .match (COLUMN_PATTERN , line )
42
42
columns_changes .setdefault (current_type , {}).setdefault (
43
43
column_name .group (1 ),
44
44
[],
45
45
).append (column_name .group (2 ))
46
- case DBChanges .TableAdded | DBChanges .TableDeleted | DBChanges . TableChanged :
46
+ case DBChanges .TableAdded | DBChanges .TableDeleted :
47
47
table_name = re .match (TABLE_PATTERN , line )
48
48
if table_name :
49
49
tables_changes .setdefault (
@@ -84,3 +84,5 @@ class DBChanges(enum.StrEnum):
84
84
for column in columns
85
85
],
86
86
)
87
+
88
+ sys .stdout .write ("\n " )
You can’t perform that action at this time.
0 commit comments