Skip to content

Commit

Permalink
v0.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Oct 22, 2023
1 parent c4d6b80 commit b836172
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
["package"]
name = "amble"
description = "First class, scalable rust project generator with batteries included."
version = "0.1.16"
version = "0.1.17"
edition = "2021"
license = "MIT"
authors = ["refcell"]
Expand Down
19 changes: 1 addition & 18 deletions src/ci.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,24 +145,7 @@ jobs:
continue-on-error: true
run: RUSTDOCFLAGS="-D warnings" cargo doc --all --no-deps --all-features --document-private-items
- name: doctest
run: cargo test --doc --all --all-features
cargo-audit:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
override: true
- uses: Swatinem/rust-cache@v1
with:
cache-on-failure: true
- name: cargo audit
run: cargo audit"#;
run: cargo test --doc --all --all-features"#;
ci_yml.write_all(ci_contents.as_bytes())?;
Ok(())
}

0 comments on commit b836172

Please sign in to comment.