Skip to content

build(deps): bump codecov/codecov-action from 4.0.1 to 4.3.1 #1740

build(deps): bump codecov/codecov-action from 4.0.1 to 4.3.1

build(deps): bump codecov/codecov-action from 4.0.1 to 4.3.1 #1740

Workflow file for this run

name: CI checks
on: [push, pull_request]
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- name: Run tests
run: >
cargo test
--workspace
--features '
armor
async
cli-common
plugin
ssh
unstable
'
- name: Verify working directory is clean
run: git diff --exit-code
build:
name: Build target ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- wasm32-wasi
steps:
- uses: actions/checkout@v4
- name: Add target
run: rustup target add ${{ matrix.target }}
- run: cargo fetch
- name: Build for target
working-directory: ./age
run: cargo build --verbose --no-default-features --target ${{ matrix.target }}
bitrot:
name: Bitrot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install linux build dependencies
run: sudo apt update && sudo apt install libfuse-dev
- run: cargo check --all-targets --all-features
clippy:
name: Clippy (MSRV)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install linux build dependencies
run: sudo apt update && sudo apt install libfuse-dev
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
name: Clippy (MSRV)
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets -- -D warnings
codecov:
name: Code coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
id: toolchain
- run: rustup override set ${{steps.toolchain.outputs.name}}
- name: Install linux build dependencies
run: sudo apt update && sudo apt install libfuse-dev
- name: Generate coverage report
uses: actions-rs/tarpaulin@v0.1
with:
version: '0.19.1'
args: --workspace --release --all-features --timeout 180 --out Xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.3.1
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
doc-links:
name: Intra-doc links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fetch
# Requires #![deny(rustdoc::broken_intra_doc_links)] in crates.
- name: Check intra-doc links
run: cargo doc --all --exclude rage --all-features --document-private-items
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all -- --check