Skip to content

Commit

Permalink
ensure that openssl is not required (#113)
Browse files Browse the repository at this point in the history
OpenSSL is not part of the docker image. As such it cannot be used by
any crate. We check this by verifying, that the openssl crate is not
part of the tree.
  • Loading branch information
wagpa authored Jun 12, 2024
1 parent 844da76 commit e847d6d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- name: Install required cargo
run: cargo install clippy-sarif sarif-fmt

- name: Check OpenSSL
run: (! cargo tree -i openssl 2> /dev/null)

- name: Build with cargo
run: cargo build --verbose

Expand Down

0 comments on commit e847d6d

Please sign in to comment.