Skip to content

Bump bytes from 1.10.1 to 1.11.1 in the cargo group across 1 directory #12

Bump bytes from 1.10.1 to 1.11.1 in the cargo group across 1 directory

Bump bytes from 1.10.1 to 1.11.1 in the cargo group across 1 directory #12

Workflow file for this run

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