Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
[feature] #224: Ensure Ursa compiles with Rust edition 2021
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandr Petrosyan <[email protected]>
  • Loading branch information
appetrosyan committed Feb 19, 2023
1 parent c4416fb commit 30b1f08
Show file tree
Hide file tree
Showing 33 changed files with 289 additions and 152 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,30 +26,37 @@ jobs:
- name: Build
working-directory: ${{ matrix.workdir }}
run: cargo build --verbose
if: always()

- name: Format
working-directory: ${{ matrix.workdir }}
run: cargo fmt --all -- --check
if: always()

- name: Docs
working-directory: ${{ matrix.workdir }}
run: cargo doc --no-deps
if: always()

- name: Clippy
working-directory: ${{ matrix.workdir }}
run: cargo clippy --all -- -W clippy::not_unsafe_ptr_arg_deref -A clippy::many_single_char_names
if: always()

- name: Check
working-directory: ${{ matrix.workdir }}
run: cargo check
if: always()

- name: Tests
working-directory: ${{ matrix.workdir }}
run: cargo test --release
if: always()

- name: Audit
working-directory: ${{ matrix.workdir }}
run: cargo audit
if: always()

# disabled in AZP
#
Expand Down
Loading

0 comments on commit 30b1f08

Please sign in to comment.