feat(crypto): add Ed25519 point and X25519 key validation #464
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Coverage | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: coverage | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup nightly Rust toolchain with caching | |
| uses: brndnmtthws/rust-action@v1 | |
| with: | |
| toolchain: nightly | |
| - run: cargo tarpaulin --features serde,nightly --out Xml | |
| - name: Upload to codecov.io | |
| uses: codecov/codecov-action@v4 | |
| if: github.repository == 'brndnmtthws/dryoc' | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |