Skip to content

Commit

Permalink
ci: fix AS ci
Browse files Browse the repository at this point in the history
Signed-off-by: Xynnn007 <[email protected]>
  • Loading branch information
Xynnn007 committed Nov 14, 2023
1 parent ec301d4 commit 4b23ac1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/as-basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,17 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: -p attestation-service -p as-types -p grpc-as -p rvps -p rvps-client
args: -p attestation-service -p grpc-as -p reference-value-provider-service

- name: Run cargo fmt check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -p attestation-service -p as-types -p grpc-as -p rvps -p rvps-client --check
args: -p attestation-service -p grpc-as -p reference-value-provider-service --check

- name: Run rust lint check
uses: actions-rs/cargo@v1
with:
command: clippy
# We are getting error in generated code due to derive_partial_eq_without_eq check, so ignore it for now
args: -p attestation-service -p as-types -p grpc-as -p rvps -p rvps-client -- -D warnings -A clippy::derive_partial_eq_without_eq
args: -p attestation-service -p grpc-as -p reference-value-provider-service -- -D warnings -A clippy::derive_partial_eq_without_eq

0 comments on commit 4b23ac1

Please sign in to comment.