From 8a87ab2bcc0d7798f55cccf46292c2dc376d898c Mon Sep 17 00:00:00 2001 From: Filipe Rodrigues Date: Wed, 13 May 2020 04:03:04 +0100 Subject: [PATCH] Changed dependency `err-impl` to be a `git` dependency. Re-enabled workflow for `clippy` and testing. --- .github/workflows/rust.yml | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ce8fd8f..86bdc3c 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -12,3 +12,7 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Clippy + run: cargo clippy --verbose + - name: Run tests + run: cargo test --verbose diff --git a/Cargo.toml b/Cargo.toml index 4fa5cdf..f292470 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,4 +19,4 @@ serde = { version = "1.0", features = ["derive"] } # Derives derive_more = "0.99" -err-impl = { path = "../err-impl" } +err-impl = { git = "https://github.com/Zenithsiz/err-impl" }