We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb50a45 commit e8b2664Copy full SHA for e8b2664
.github/workflows/ci.yml
@@ -59,7 +59,7 @@ jobs:
59
uses: actions-rs/cargo@v1
60
with:
61
command: build
62
- args: --all-features --target ${{ matrix.platform.target }}
+ args: --all-features --target ${{ matrix.platform.target }} --exclude xtask
63
- name: Tests
64
if: matrix.platform.target != 'wasm32-unknown-unknown'
65
xtask/src/main.rs
@@ -40,10 +40,6 @@ enum Task {
40
Preprocess,
41
}
42
43
-#[cfg(target_family = "wasm")]
44
-fn main() {}
45
-
46
-#[cfg(not(target_family = "wasm"))]
47
fn main() -> Result<()> {
48
let cli = Cli::parse();
49
0 commit comments