Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
KJHJason committed Jul 17, 2024
1 parent 647a2d4 commit 11659c9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/dotnet_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ name: Test C# Implementation in .NET
on:
push:
branches: ["master"]
paths:
- 'csharp/**'
pull_request:
branches: ["master"]
paths:
- 'csharp/**'

jobs:
build-and-test:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/rust_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Test Rust Implementation
on:
push:
branches: [ "master" ]
paths:
- 'rust/**'
pull_request:
branches: [ "master" ]
paths:
- 'rust/**'

jobs:
build-and-test:
Expand All @@ -20,7 +24,9 @@ jobs:
- uses: dtolnay/rust-toolchain@stable

- name: Test default/rust_crypto feature
# to pass '--show-output' as a value, use '-- --show-output'
run: cargo test -- --show-output

- name: Test ring feature
run: cargo test --features ring --no-default-features -- --show-output
# to pass '--show-output' as a value, use '-- --show-output'
run: cargo test --features ring -- --show-output

0 comments on commit 11659c9

Please sign in to comment.