File tree Expand file tree Collapse file tree 5 files changed +21
-8
lines changed Expand file tree Collapse file tree 5 files changed +21
-8
lines changed Original file line number Diff line number Diff line change 31
31
with :
32
32
version : " 0.6.9"
33
33
34
+ - name : Install sqlite3
35
+ run : |
36
+ sudo apt-get update
37
+ sudo apt-get install -y sqlite3
38
+
34
39
- run : uv sync --all-extras --dev
35
40
36
41
- run : echo "$PWD/.venv/bin" >> $GITHUB_PATH
39
44
with :
40
45
extra-args : app # only check apps dir
41
46
47
+ - name : Check Alembic Migrations
48
+ run : |
49
+ uv run alembic upgrade heads
50
+ uv run alembic check
51
+
42
52
build :
43
53
needs : test
44
54
if : github.event_name == 'push' && github.ref == 'refs/heads/main' || github.event_name == 'release'
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def create_valued_configuration(
84
84
if not isinstance (_value , IndexerConfiguration ):
85
85
logger .debug ("Skipping %s" , key )
86
86
continue
87
- value : IndexerConfiguration [Any ] = _value
87
+ value : IndexerConfiguration [Any ] = _value # pyright: ignore[reportUnknownVariableType]
88
88
89
89
config_value = indexer_configuration_cache .get (session , key )
90
90
if config_value is None :
Original file line number Diff line number Diff line change 95
95
} ;
96
96
toastifyjs = builtins . fetchurl {
97
97
url = "https://cdn.jsdelivr.net/npm/toastify-js" ;
98
- sha256 = "sha256:0v22qkipd2y4z08qkl8hd28d0bgjahn9q08nx05bxfg282zgxavg " ;
98
+ sha256 = "sha256:06mcmh3gl8mv5c4js767crpz010wrf8hyk47cm1i3hbcf9j195n2 " ;
99
99
} ;
100
100
toastifycss = builtins . fetchurl {
101
101
url = "https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css" ;
102
- sha256 = "sha256:13z5076jlvy1p4fqmmvic3ywbi153jrs0hy8mrl1z45s2js2qgpf " ;
102
+ sha256 = "sha256:1rgc3cx546vzkyzb3z5g7bpkdvlma7r0jwhp9mnx20f3rhfl7lwb " ;
103
103
} ;
104
104
in
105
105
Original file line number Diff line number Diff line change @@ -44,4 +44,7 @@ reportUnknownParameterType = true
44
44
reportMissingParameterType = true
45
45
46
46
[dependency-groups ]
47
- dev = [" black>=25.1.0" , " pyright>=1.1.397" ]
47
+ dev = [
48
+ " black>=25.1.0" ,
49
+ " pyright==1.1.398" ,
50
+ ]
You can’t perform that action at this time.
0 commit comments