Changed dependency err-impl to be a git dependency.

Re-enabled workflow for `clippy` and testing.
This commit is contained in:
2020-05-13 04:03:04 +01:00
parent 327c80df08
commit 8a87ab2bcc
2 changed files with 5 additions and 1 deletions

View File

@@ -12,3 +12,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Clippy
run: cargo clippy --verbose
- name: Run tests
run: cargo test --verbose

View File

@@ -19,4 +19,4 @@ serde = { version = "1.0", features = ["derive"] }
# Derives # Derives
derive_more = "0.99" derive_more = "0.99"
err-impl = { path = "../err-impl" } err-impl = { git = "https://github.com/Zenithsiz/err-impl" }