Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Aug 29, 2023
1 parent f310df4 commit f5466e2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
strategy:
matrix:
toolchain:
- '1.66' # MSRV
- stable
- { name: msrv, version: '1.66' }
- { name: stable, version: stable }
steps:
- uses: actions/checkout@v3
- name: Install Rust
- name: Install Rust (${{ matrix.toolchain.name }})
uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
with:
components: clippy
toolchain: ${{ matrix.toolchain.version }}

- name: Test
run: cargo test --all-features
2 changes: 1 addition & 1 deletion src/dir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ mod test {

// #[test]
// fn test_the_whole_hog() -> Result<()> {
// std::env::set_var("RUST_LOG", "acme_micro=trace");
// std::env::set_var("RUST_LOG", "acme_lite=trace");
// let _ = env_logger::try_init();

// use crate::cert::create_p384_key;
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//! # Example
//!
//! ```no_run
//! use acme_micro::{Error, Certificate, Directory, DirectoryUrl};
//! use acme_micro::create_p384_key;
//! use acme_lite::{Error, Certificate, Directory, DirectoryUrl};
//! use acme_lite::create_p384_key;
//! use std::time::Duration;
//!
//! fn request_cert() -> Result<Certificate, Error> {
Expand Down
8 changes: 4 additions & 4 deletions src/order/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ impl Auth {
/// The challenge will be accessed over HTTP (not HTTPS), for obvious reasons.
///
/// ```no_run
/// use acme_micro::order::Auth;
/// use acme_micro::Error;
/// use acme_lite::order::Auth;
/// use acme_lite::Error;
/// use std::fs::File;
/// use std::io::Write;
/// use std::time::Duration;
Expand Down Expand Up @@ -101,8 +101,8 @@ impl Auth {
/// The <proof> contains the signed token proving this account update it.
///
/// ```no_run
/// use acme_micro::order::Auth;
/// use acme_micro::Error;
/// use acme_lite::order::Auth;
/// use acme_lite::Error;
/// use std::time::Duration;
///
/// fn dns_authorize(auth: &Auth) -> Result<(), Error> {
Expand Down

0 comments on commit f5466e2

Please sign in to comment.