Skip to content

Commit e9f2f59

Browse files
committed
replace all-features with full in ci
1 parent 286c3dd commit e9f2f59

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions-rs/cargo@v1
1717
with:
1818
command: check
19-
args: --all --all-features
19+
args: --all --features "full"
2020
cover:
2121
runs-on: ubuntu-latest
2222
services:
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions-rs/[email protected]
5151
with:
5252
version: '0.11.0'
53-
args: --out Xml --all --all-features
53+
args: --out Xml --all --features "full"
5454
env:
5555
TCP_URL: "postgresql:///postgres?host=localhost&user=postgres&password=postgres"
5656
UDS_URL: "postgresql:///postgres?host=/var/run&user=postgres&password=postgres"

.github/workflows/stable-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions-rs/cargo@v1
2020
with:
2121
command: check
22-
args: --all --all-features
22+
args: --all --features "full"
2323
test:
2424
runs-on: ubuntu-latest
2525
strategy:
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions-rs/cargo@v1
6060
with:
6161
command: test
62-
args: --all --all-features --no-fail-fast -- --nocapture
62+
args: --all --features "full" --no-fail-fast -- --nocapture
6363
env:
6464
TCP_URL: "postgresql:///postgres?host=localhost&user=postgres&password=postgres"
6565
UDS_URL: "postgresql:///postgres?host=/var/run&user=postgres&password=postgres"

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ postgres-native-tls = "0.3.0"
3636
native-tls = "0.2.4"
3737

3838
[features]
39-
docs = ["all-types"]
39+
docs = ["full"]
40+
full = ["all-types"]
4041
all-types = [
4142
"with-bit-vec-0_6",
4243
"with-chrono-0_4",

0 commit comments

Comments
 (0)