Skip to content

Commit 9cf9557

Browse files
committed
Skipping doc tests
1 parent 8f5877c commit 9cf9557

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
# Run tests
7676
- name: Run tests
77-
run: cargo test --verbose
77+
run: cargo test --lib --bins --tests --verbose
7878

7979
build-and-publish:
8080
name: Build and Publish Docker Image

src/lib.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@ use anyhow::{Context as AnyhowContext, Error, anyhow};
22
use base64::Engine;
33
use clap::Parser;
44
use glob::glob;
5-
use openpgp::{Cert, parse::Parse};
65
use pgp::types::PublicKeyTrait;
76
use pgp::{Deserializable, SignedPublicKey};
8-
use sequoia_openpgp as openpgp;
97
use serde_yaml::Value;
108
use std::fs;
119
use std::io::Write;
1210
use std::path::Path;
1311
use std::process::{Command, Stdio};
12+
use sequoia_openpgp::Cert;
13+
use sequoia_openpgp::parse::Parse;
14+
1415
#[derive(Parser, Debug)]
1516
struct Args {
1617
/// Base64-encoded private GPG key

0 commit comments

Comments
 (0)