File tree Expand file tree Collapse file tree 5 files changed +24
-4
lines changed Expand file tree Collapse file tree 5 files changed +24
-4
lines changed Original file line number Diff line number Diff line change
1
+ on : [push]
2
+
3
+ name : CI
4
+
5
+ jobs :
6
+ test :
7
+ name : Run integration tests
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ - uses : actions-rs/toolchain@v1
12
+ with :
13
+ toolchain : stable
14
+ - uses : actions-rs/cargo@v1
15
+ with :
16
+ command : test
17
+ - uses : actions-rs/cargo@v1
18
+ with :
19
+ command : test
20
+ args : --features postgresql --test feature_flag_postgresql
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ impl<'a> Delete<'a> {
197
197
/// The with clause, this method can be used enabling the feature flag `postgresql`
198
198
///
199
199
/// # Examples
200
- /// ```
200
+ /// ```text
201
201
/// use sql_query_builder as sql;
202
202
///
203
203
/// let deactivated_users = sql::Select::new().select("id").from("users").where_clause("ative = false");
Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ impl<'a> Insert<'a> {
214
214
/// The with clause, this method can be used enabling the feature flag `postgresql`
215
215
///
216
216
/// # Examples
217
- /// ```
217
+ /// ```text
218
218
/// use sql_query_builder as sql;
219
219
///
220
220
/// let active_users = sql::Select::new().select("*").from("users_bk").where_clause("ative = true");
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ impl<'a> Select<'a> {
320
320
/// The with clause, this method can be used enabling the feature flag `postgresql`
321
321
///
322
322
/// # Examples
323
- /// ```
323
+ /// ```text
324
324
/// use sql_query_builder as sql;
325
325
///
326
326
/// let logins = sql::Select::new().select("login").from("users").where_clause("id in ($1)");
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ impl<'a> Update<'a> {
212
212
/// The with clause, this method can be used enabling the feature flag `postgresql`
213
213
///
214
214
/// # Examples
215
- /// ```
215
+ /// ```text
216
216
/// use sql_query_builder as sql;
217
217
///
218
218
/// let user = sql::Insert::new()
You can’t perform that action at this time.
0 commit comments