Skip to content

Commit

Permalink
ci:fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
limuy2022 committed Jun 30, 2024
1 parent d8f7d64 commit 931bf39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- name: Build Release
run: cd gdrust && cargo build --package proto --features protobuf_feature --all --release
- name: Run tests Debug
run: cd gdrust && cargo test --all
run: cd gdrust && cargo test --package proto --features protobuf_feature --all
- name: Run tests Release
run: cd gdrust && cargo test --all --release
run: cd gdrust && cargo test --package proto --features protobuf_feature --all --release
- name: Check Fmt
run: cd gdrust && cargo fmt -- --check
4 changes: 2 additions & 2 deletions .github/workflows/rust_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- name: Build Release
run: cd gdrust && cargo build --package proto --features protobuf_feature --all --release
- name: Run tests Debug
run: cd gdrust && cargo test --all
run: cd gdrust && cargo test --package proto --features protobuf_feature --all
- name: Run tests Release
run: cd gdrust && cargo test --all --release
run: cd gdrust && cargo test --package proto --features protobuf_feature --all --release
4 changes: 2 additions & 2 deletions .github/workflows/rust_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- name: Build Release
run: cd gdrust && cargo build --package proto --features protobuf_feature --all --release
- name: Run tests Debug
run: cd gdrust && cargo test --all
run: cd gdrust && cargo test --package proto --features protobuf_feature --all
- name: Run tests Release
run: cd gdrust && cargo test --release --all
run: cd gdrust && cargo test --package proto --features protobuf_feature --release --all

0 comments on commit 931bf39

Please sign in to comment.