641114de60
Quick CI / quick-test (push) Failing after 1m15s
Multi-Platform CI / test-platforms (macos-latest, aarch64-apple-darwin) (push) Failing after 56s
Multi-Platform CI / test-platforms (macos-latest, x86_64-apple-darwin) (push) Failing after 40s
Multi-Platform CI / test-platforms (ubuntu-22.04, aarch64-unknown-linux-gnu) (push) Failing after 1m20s
Multi-Platform CI / test-platforms (ubuntu-22.04, x86_64-unknown-linux-gnu) (push) Failing after 40s
Multi-Platform CI / test-platforms (windows-latest, aarch64-pc-windows-msvc) (push) Failing after 40s
Multi-Platform CI / test-platforms (windows-latest, x86_64-pc-windows-msvc) (push) Failing after 39s
Multi-Platform CI / test-native (macos-latest) (push) Failing after 1m16s
Multi-Platform CI / test-native (ubuntu-22.04) (push) Failing after 1m16s
Multi-Platform CI / test-native (windows-latest) (push) Failing after 1m17s
Multi-Platform CI / package (macos-latest, aarch64-apple-darwin) (push) Has been skipped
Multi-Platform CI / package (macos-latest, x86_64-apple-darwin) (push) Has been skipped
Multi-Platform CI / package (ubuntu-22.04, x86_64-unknown-linux-gnu) (push) Has been skipped
Multi-Platform CI / package (windows-latest, x86_64-pc-windows-msvc) (push) Has been skipped
38 lines
894 B
YAML
38 lines
894 B
YAML
name: Quick CI
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
# Fast feedback for development - Linux only
|
|
quick-test:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: clippy, rustfmt
|
|
- name: Install components (clippy, rustfmt)
|
|
run: |
|
|
rustup component add clippy rustfmt || true
|
|
- name: Build
|
|
run: |
|
|
cargo build --all-features
|
|
- name: Test
|
|
run: |
|
|
cargo test --all-features
|
|
- name: Clippy
|
|
run: |
|
|
cargo clippy --all-targets --all-features -D warnings
|
|
- name: Fmt check
|
|
run: |
|
|
cargo fmt --all -- --check
|
|
- name: Benchmark
|
|
run: |
|
|
cargo bench --bench heart
|
|
- name: Security audit
|
|
run: |
|
|
cargo install cargo-audit
|
|
cargo audit
|