Skip to content

Commit

Permalink
Added derive feature flag to GH Action test
Browse files Browse the repository at this point in the history
  • Loading branch information
criminosis committed Nov 13, 2024
1 parent 97ca6c1 commit 2d2b13a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,29 +52,29 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path gremlin-client/Cargo.toml --features=tokio-runtime
args: --manifest-path gremlin-client/Cargo.toml --features=tokio-runtime,derive
- name: Run cargo test with async-std
if: matrix.gremlin-server == '3.5.7'
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path gremlin-client/Cargo.toml --features=async-std-runtime
args: --manifest-path gremlin-client/Cargo.toml --features=async-std-runtime,derive
# MergeV as a step doesn't exist in 3.5.x, so selectively run those tests
- name: Run cargo test with blocking client
if: matrix.gremlin-server != '3.5.7'
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path gremlin-client/Cargo.toml --features=merge_tests
args: --manifest-path gremlin-client/Cargo.toml --features=merge_tests,derive
- name: Run cargo test with tokio
if: matrix.gremlin-server != '3.5.7'
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path gremlin-client/Cargo.toml --features=tokio-runtime,merge_tests
args: --manifest-path gremlin-client/Cargo.toml --features=tokio-runtime,merge_tests,derive
- name: Run cargo test with async-std
if: matrix.gremlin-server != '3.5.7'
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path gremlin-client/Cargo.toml --features=async-std-runtime,merge_tests
args: --manifest-path gremlin-client/Cargo.toml --features=async-std-runtime,merge_tests,derive

0 comments on commit 2d2b13a

Please sign in to comment.