Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): use working-directory instead of cd #1540

Merged
merged 1 commit into from
Sep 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,17 +226,23 @@ jobs:
profile: minimal
override: true
- name: "Test log support"
run: (cd tracing/test-log-support && cargo test)
run: cargo test
working-directory: "tracing/test-log-support"
- name: "Test static max level"
run: (cd tracing/test_static_max_level_features && cargo test)
run: cargo test
working-directory: "tracing/test_static_max_level_features"
- name: "Test tracing-core no-std support"
run: (cd tracing-core && cargo test --no-default-features)
run: cargo test --no-default-features
working-directory: tracing
- name: "Test tracing no-std support"
run: (cd tracing && cargo test --no-default-features)
run: cargo test --no-default-features
working-directory: tracing
# this skips running doctests under the `--no-default-features` flag,
# as rustdoc isn't aware of cargo's feature flags.
- name: "Test tracing-subscriber with all features disabled"
run: (cd tracing-subscriber && cargo test --lib --tests --no-default-features)
run: cargo test --lib --tests --no-default-features
working-directory: tracing-subscriber

style:
# Check style.
needs: check
Expand Down