Skip to content

Commit b29beff

Browse files
committed
Update GitHub workflows to use all features
1 parent f185a48 commit b29beff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
rust-version: ${{ matrix.rust }}
8787
- name: Test
88-
run: cargo test
88+
run: cargo test --all-features
8989

9090
publish-docs:
9191
if: github.ref == 'refs/heads/main'
@@ -97,7 +97,7 @@ jobs:
9797
- uses: actions/checkout@v2
9898
- name: Generate Docs
9999
run: |
100-
cargo doc --no-deps
100+
cargo doc --no-deps --all-features
101101
echo "<meta http-equiv=refresh content=0;url=`echo ${{ github.repository }} | cut -d / -f 2 | tr '-' '_'`/index.html>" > target/doc/index.html
102102
- name: Publish
103103
uses: peaceiris/actions-gh-pages@v3
@@ -118,4 +118,4 @@ jobs:
118118
shell: bash
119119
run: cargo publish --token ${{ env.CRATES_TOKEN }}
120120
env:
121-
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
121+
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

0 commit comments

Comments
 (0)