Fix padding calculation for large AADs in xchacha20poly1305 secretstream push/pull #425
This file contains 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-latest | |
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 }} |