Skip to content

Commit 40e960e

Browse files
committed
add --all-features flag in ci
1 parent 08366c4 commit 40e960e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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
19+
args: --all --all-features
2020
cover:
2121
runs-on: ubuntu-latest
2222
services:
@@ -48,7 +48,7 @@ jobs:
4848
uses: actions-rs/tarpaulin@v0.1
4949
with:
5050
version: '0.11.0'
51-
args: --out Xml --all
51+
args: --out Xml --all --all-features
5252
env:
5353
TEST_URL: "postgresql://localhost/postgres?user=postgres&password=postgres"
5454
- name: Upload to codecov.io

.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
22+
args: --all --all-features
2323
test:
2424
runs-on: ubuntu-latest
2525
strategy:
@@ -57,6 +57,6 @@ jobs:
5757
uses: actions-rs/cargo@v1
5858
with:
5959
command: test
60-
args: --all --no-fail-fast -- --nocapture
60+
args: --all --all-features --no-fail-fast -- --nocapture
6161
env:
6262
TEST_URL: "postgresql://localhost/postgres?user=postgres&password=postgres"

0 commit comments

Comments
 (0)