2022-09-04 18:43:52 +10:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-02-25 13:26:26 +11:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-11]
|
2022-09-04 18:43:52 +10:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-02-17 14:48:55 +11:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2022-09-10 14:59:10 +10:00
|
|
|
with:
|
|
|
|
components: clippy, rustfmt
|
2023-02-12 04:51:53 +11:00
|
|
|
- run: cp crates/playground/src/playground.template.rs crates/playground/src/playground.rs
|
2022-09-18 16:56:40 +10:00
|
|
|
- name: Validate formatting
|
2022-09-10 14:59:10 +10:00
|
|
|
run: cargo fmt --all -- --check
|
2022-09-27 15:30:42 +10:00
|
|
|
- name: Validate documentation
|
2023-02-17 14:48:55 +11:00
|
|
|
run: cargo doc --workspace --no-deps --all-features --document-private-items
|
2022-09-18 16:56:40 +10:00
|
|
|
- name: Run clippy lints
|
2023-02-17 14:48:55 +11:00
|
|
|
run: cargo clippy --workspace --no-deps --all-features --all-targets -- -D warnings
|
2022-09-18 16:56:40 +10:00
|
|
|
- name: Run tests
|
2023-02-17 14:48:55 +11:00
|
|
|
run: cargo test --workspace --all-features --all-targets
|
2022-10-04 20:12:32 +11:00
|
|
|
- name: Run valence_nbt tests without preserve_order feature
|
2023-02-17 14:48:55 +11:00
|
|
|
run: cargo test -p valence_nbt --all-targets
|