chore(deps): bump crate-ci/typos from 1.16.11 to 1.16.12 #12
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: Rust | |
on: | |
pull_request: | |
# Run CI on the main branch after every merge. | |
# This is important to fill the GitHub Actions cache in a way that PRs can see it. | |
push: | |
branches: | |
- main | |
# Run CI on the main branch every Sunday. | |
schedule: | |
- cron: '14 3 * * 0' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
CLICOLOR_FORCE: 1 | |
# Disable incremental compilation. | |
# | |
# Incremental compilation is useful as part of an edit-build-test-edit cycle, | |
# as it lets the compiler avoid recompiling code that hasn't changed. However, | |
# on CI, we're not making small edits; we're almost always building the entire | |
# project from scratch. Thus, incremental compilation on CI actually | |
# introduces *additional* overhead to support making future builds | |
# faster...but no future builds will ever occur in any given CI environment. | |
# | |
# See https://matklad.github.io/2021/09/04/fast-rust-builds.html#ci-workflow | |
# for details. | |
CARGO_INCREMENTAL: 0 | |
# Allow more retries for network requests in cargo (downloading crates) and | |
# rustup (installing toolchains). This should help to reduce flaky CI failures | |
# from transient network timeouts or other issues. | |
CARGO_NET_RETRY: 10 | |
RUSTUP_MAX_RETRIES: 10 | |
# Don't emit giant backtraces in the CI logs. | |
RUST_BACKTRACE: short | |
RUSTDOCFLAGS: -D warnings | |
jobs: | |
diff: | |
runs-on: [ubuntu-ghcloud] | |
permissions: | |
contents: read | |
pull-requests: read | |
outputs: | |
isRust: ${{ steps.diff.outputs.isRust }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Detect Changes | |
uses: dorny/paths-filter@v2.11.1 | |
id: diff | |
with: | |
filters: | | |
isRust: | |
- 'crates/**' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- 'rust-toolchain' | |
- '.github/workflows/rust.yml' | |
test: | |
name: Test Rust code and report coverage | |
needs: diff | |
if: ${{ github.event_name == 'schedule' || needs.diff.outputs.isRust == 'true' }} | |
runs-on: ubuntu-ghcloud | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup update stable | |
- uses: Swatinem/rust-cache@v2 | |
if: github.ref == 'refs/heads/main' | |
- uses: Swatinem/rust-cache@v2 | |
if: github.ref != 'refs/heads/main' | |
with: | |
save-if: "false" | |
- run: cargo install cargo-tarpaulin@0.26.1 | |
- name: Run tests and record coverage | |
run: cargo tarpaulin --workspace --skip-clean --out html --out xml | |
- name: Upload coverage report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Coverage report | |
path: tarpaulin-report.html | |
- name: Code-coverage report | |
uses: irongut/CodeCoverageSummary@v1.3.0 | |
with: | |
filename: cobertura.xml | |
badge: true | |
fail_below_min: false | |
format: markdown | |
hide_branch_rate: false | |
hide_complexity: true | |
indicators: true | |
output: both | |
thresholds: '50 75' | |
- name: Add coverage PR comment | |
uses: marocchino/sticky-pull-request-comment@v2 | |
if: ${{ github.event_name == 'pull_request' && github.actor != 'dependabot[bot]' }} | |
with: | |
path: code-coverage-results.md | |
lint: | |
name: Lint Rust code | |
needs: diff | |
if: ${{ github.event_name == 'schedule' || needs.diff.outputs.isRust == 'true' }} | |
runs-on: ubuntu-ghcloud | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup update stable | |
- uses: Swatinem/rust-cache@v2 | |
if: github.ref == 'refs/heads/main' | |
- uses: Swatinem/rust-cache@v2 | |
if: github.ref != 'refs/heads/main' | |
with: | |
save-if: "false" | |
- run: cargo install cargo-sort@1.0.9 | |
- name: Check formatting with rustfmt | |
run: > | |
cargo fmt --all -- --check | |
--config group_imports=StdExternalCrate,imports_granularity=Crate,imports_layout=HorizontalVertical | |
- name: Check sorting of dependencies | |
run: cargo sort -w -c | |
- name: Lint using clippy | |
run: cargo clippy --all-features --tests --no-deps -- -D warnings | |
build: | |
name: Build Rust code | |
needs: diff | |
if: ${{ github.event_name == 'schedule' || needs.diff.outputs.isRust == 'true' }} | |
runs-on: ubuntu-ghcloud | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup update stable | |
- uses: Swatinem/rust-cache@v2 | |
if: github.ref == 'refs/heads/main' | |
- uses: Swatinem/rust-cache@v2 | |
if: github.ref != 'refs/heads/main' | |
with: | |
save-if: "false" | |
- name: Build Rust code | |
run: cargo build --verbose | |
check-all: | |
name: Check if all Rust jobs succeeded | |
if: always() | |
needs: | |
- diff | |
- test | |
- lint | |
- build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether all needed jobs succeeded | |
uses: re-actors/alls-green@release/v1 | |
with: | |
allowed-skips: test, lint, build | |
jobs: ${{ toJSON(needs) }} |