mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 02:47:42 +03:00
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.5.0 to 4.6.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4.5.0...v4.6.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
115 lines
3 KiB
YAML
115 lines
3 KiB
YAML
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
|
|
container:
|
|
image: xd009642/tarpaulin:develop-nightly
|
|
options: --security-opt seccomp=unconfined
|
|
|
|
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: apt update && apt -y install libfuse-dev
|
|
- name: Generate coverage report
|
|
run: >
|
|
cargo tarpaulin
|
|
--engine llvm
|
|
--workspace
|
|
--release
|
|
--all-features
|
|
--timeout 180
|
|
--out xml
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v4.6.0
|
|
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
|