valence/.github/workflows/rust.yml

35 lines
807 B
YAML
Raw Normal View History

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
2022-09-18 16:56:40 +10:00
- name: Validate formatting
run: cargo fmt --all -- --check
2022-09-27 15:30:42 +10:00
- name: Validate documentation
run: cargo +stable doc --no-deps --all-features --workspace --document-private-items
2022-09-18 16:56:40 +10:00
- name: Run clippy lints
run: cargo +stable clippy --no-deps --all-features --all-targets -- -D warnings
- name: Run tests
2022-09-10 19:40:58 +10:00
run: cargo +stable test --all-features --all-targets