Skip to content

Commit

Permalink
Merge pull request http-rs#897 from nyxtom/patch-github-cargo
Browse files Browse the repository at this point in the history
Fix github ci to include logger with tests
  • Loading branch information
Fishrock123 authored Jul 31, 2022
2 parents 9f3cde6 + 9ea5444 commit 495e177
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples
args: --all --bins --examples --features logger

- name: check avoid-dev-deps
uses: actions-rs/cargo@v1
Expand All @@ -44,7 +44,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests --features unstable
args: --all --bins --examples --tests --features unstable,logger

- name: check no-default-features
uses: actions-rs/cargo@v1
Expand All @@ -62,13 +62,13 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --all
args: --all --features logger

- name: tests unstable
uses: actions-rs/cargo@v1
with:
command: test
args: --all --features unstable
args: --all --features unstable,logger

check_fmt_and_docs:
name: Checking fmt, clippy, and docs
Expand All @@ -82,7 +82,7 @@ jobs:
rustc --version
- name: clippy
run: cargo clippy --tests --examples -- -D warnings
run: cargo clippy --tests --examples --features logger -- -D warnings

- name: fmt
run: cargo fmt --all -- --check
Expand Down

0 comments on commit 495e177

Please sign in to comment.