Skip to content

Commit 8037825

Browse files
committed
Removed tests.
Added fmt only on nightly
1 parent 3225682 commit 8037825

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/pr.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,14 @@ jobs:
5656
command: build
5757
args: --release --all
5858

59-
- name: Cargo test
60-
uses: actions-rs/cargo@v1
61-
with:
62-
command: test
63-
args: --release --all
59+
# - name: Cargo test
60+
# uses: actions-rs/cargo@v1
61+
# with:
62+
# command: test
63+
# args: --release --all
6464

6565
- name: Cargo fmt
66+
if: matrix.rust == 'nightly'
6667
uses: actions-rs/cargo@v1
6768
with:
6869
command: fmt

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ pub mod protocol;
88
#[macro_use]
99
pub mod macros;
1010

11-
pub use juno_module::json;
12-
pub use juno_module::JunoModule;
11+
pub use juno_module::{json, JunoModule};

src/macros.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#[macro_export(local_inner_macros)]
32
macro_rules! value {
43
// Hide distracting implementation details from the generated rustdoc.

0 commit comments

Comments
 (0)