mirror of
https://github.com/element-hq/matrix-rich-text-editor.git
synced 2026-01-12 06:53:04 +00:00
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
concurrency:
|
|
group: ${{ github.ref == 'refs/heads/main' && format('rust-build-main-{0}', github.sha) || format('rust-build-pr-{0}', github.ref) }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install rust
|
|
run: |
|
|
rustup set profile minimal
|
|
rustup show # installs from rust-toolchain.toml
|
|
- name: Set Component
|
|
run: rustup component add rustfmt clippy
|
|
- name: Format
|
|
run: cargo fmt -- --check
|
|
- name: Clippy
|
|
run: cargo clippy --all-features -- -D warnings
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Install cargo-llvm-cov
|
|
uses: taiki-e/install-action@cargo-llvm-cov
|
|
- name: Generate code coverage
|
|
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v5
|
|
with:
|
|
files: lcov.info
|
|
fail_ci_if_error: true
|
|
flags: unittests-rust, unittests
|
|
# https://github.com/codecov/codecov-action/issues/557#issuecomment-1216749652
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|