Skip to content

Merge pull request #761 from gwenn/typeahead #840

Merge pull request #761 from gwenn/typeahead

Merge pull request #761 from gwenn/typeahead #840

Workflow file for this run

name: Rust
on:
push:
branches: [master]
paths:
- "**.rs"
- "**.toml"
- ".github/workflows/rust.yml"
pull_request:
paths:
- "**.rs"
- "**.toml"
- ".github/workflows/rust.yml"
- "*.md"
env:
RUST_BACKTRACE: short
RUSTFLAGS: -Cdebuginfo=1
permissions:
contents: read
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2.2.0
- name: Build
run: cargo build --workspace --all-targets
- name: Run tests
run: cargo test --workspace --all-targets
- name: Run doctests
run: cargo test --workspace --doc
- name: Test features
if: matrix.os != 'windows-latest'
run: cargo test --workspace --all-targets --all-features
- name: Clippy
run: cargo clippy --workspace --no-deps -- -D warnings
- name: Format
run: cargo fmt --all -- --check
- name: Check with no default features
run: cargo check --workspace --no-default-features
env:
RUSTFLAGS: "-D warnings"