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

Remove deprecated action #70

Merged
merged 2 commits into from
Nov 7, 2019
Merged
Show file tree
Hide file tree
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
8 changes: 2 additions & 6 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- id: component
uses: actions-rs/components-nightly@v1
with:
component: clippy
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ steps.component.outputs.toolchain }}
toolchain: nightly
components: clippy
override: true
- run: rustup component add clippy
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions bastion/src/children.rs
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,8 @@ impl Children {
/// # Bastion::block_until_stopped();
/// # }
/// ```
///
/// [`with_exec`]: #method.with_exec
pub fn with_redundancy(mut self, redundancy: usize) -> Self {
self.redundancy = redundancy;
self
Expand Down
6 changes: 3 additions & 3 deletions bastion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
//! [lightproc]: https://docs.rs/lightproc/
//!

#![doc(html_logo_url = "https://raw.githubusercontent.com/bastion-rs/bastion/master/img/bastion-logo.png")]


#![doc(
html_logo_url = "https://raw.githubusercontent.com/bastion-rs/bastion/master/img/bastion-logo.png"
)]
// Force missing implementations
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
Expand Down
4 changes: 2 additions & 2 deletions bastion/src/supervisor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ impl Supervisor {
/// of its elements panicked or returned an error).
///
/// The default strategy is
/// [`SupervisorStrategy::OneForOne`].
/// [`SupervisionStrategy::OneForOne`].
///
/// # Arguments
///
Expand Down Expand Up @@ -874,7 +874,7 @@ impl SupervisorRef {
/// returned an error).
///
/// The default strategy `Supervisor` is
/// [`SupervisorStrategy::OneForOne`].
/// [`SupervisionStrategy::OneForOne`].
///
/// This method returns `()` if it succeeded, or `Err(())`
/// otherwise.
Expand Down