Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
a10y committed Dec 12, 2024
1 parent a826a95 commit 8fc7187
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,18 @@ jobs:
- name: "all-features"
command: "build"
args: "--all-features"
- name: "default"
- name: "default features"
command: "build"
args: ""
- name: "with tokio dispatcher"
command: "build"
args: "--no-default-features --features tokio"
args: "--no-default-features --features tokio --ignore-unknown-features"
- name: "with compio dispatcher"
command: "build"
args: "--no-default-features --features compio"
args: "--no-default-features --features compio --ignore-unknown-features"
- name: "with tokio+compio dispatcher"
command: "build"
args: "--no-default-features --features tokio,compio"
args: "--no-default-features --features tokio,compio --ignore-unknown-features"
- name: "wasm32 with default features"
command: "build"
args: "--target wasm32-unknown-unknown"
Expand All @@ -120,7 +120,7 @@ jobs:
- name: Install cargo-hack
uses: taiki-e/install-action@cargo-hack
- name: Rust Build (${{matrix.config.name}})
run: cargo hack ${{matrix.config.command}} ${{matrix.config.args}} --all-targets --ignore-unknown-features --ignore-private
run: cargo hack ${{matrix.config.command}} ${{matrix.config.args}} --all-targets --ignore-private


rust-test:
Expand Down

0 comments on commit 8fc7187

Please sign in to comment.