Bump bytes from 1.10.1 to 1.11.1 in the cargo group across 1 directory #12
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: CI | |
| on: | |
| push: | |
| branches: ["**"] | |
| pull_request: | |
| branches: ["**"] | |
| jobs: | |
| build-test: | |
| name: build-test (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: clippy | |
| - name: Rust cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| key: ${{ matrix.os }} | |
| - name: Build | |
| run: cargo build --all-targets --locked | |
| - name: Test | |
| run: cargo test --all --locked | |
| - name: Install cargo-llvm-cov | |
| if: matrix.os == 'ubuntu-latest' | |
| uses: taiki-e/install-action@cargo-llvm-cov | |
| - name: Generate coverage (lcov) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: cargo llvm-cov --all --locked --lcov --output-path lcov.info | |
| - name: Upload coverage reports to Codecov | |
| if: matrix.os == 'ubuntu-latest' | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: seifreed/CipherRun | |
| files: lcov.info |