File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed
Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+
8+ env :
9+ CARGO_TERM_COLOR : always
10+
11+ jobs :
12+ test :
13+
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v2
18+ - name : Build
19+ run : cargo build --verbose
20+ - name : Docker setup
21+ run : docker run -d -p 7700:7700 getmeili/meilisearch:latest ./meilisearch --no-analytics=true
22+ - name : Run tests
23+ run : cargo test --verbose -- --test-threads=1
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ impl<'a> Client<'a> {
268268#[ serde( rename_all = "camelCase" ) ]
269269pub struct ClientStats {
270270 pub database_size : usize ,
271- pub last_update : String ,
271+ pub last_update : Option < String > ,
272272 pub indexes : HashMap < String , IndexStats > ,
273273}
274274
You can’t perform that action at this time.
0 commit comments