2022-09-04 18:43:52 +10:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-09 22:09:53 +11:00
|
|
|
branches: ["main"]
|
2022-09-04 18:43:52 +10:00
|
|
|
pull_request:
|
2023-03-09 22:09:53 +11:00
|
|
|
branches: ["main"]
|
2022-09-04 18:43:52 +10:00
|
|
|
|
|
|
|
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:
|
2023-03-09 22:09:53 +11:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
components: clippy, rustfmt
|
|
|
|
- run: cp crates/playground/src/playground.template.rs crates/playground/src/playground.rs
|
|
|
|
- name: Set up cargo cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
continue-on-error: false
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cargo/bin/
|
|
|
|
~/.cargo/registry/index/
|
|
|
|
~/.cargo/registry/cache/
|
|
|
|
~/.cargo/git/db/
|
|
|
|
target/
|
|
|
|
key: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.toml') }}
|
|
|
|
${{ runner.os }}-cargo-target
|
|
|
|
- name: Install Dependencies (Linux)
|
|
|
|
run: sudo apt-get update && sudo apt-get install -y libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libclang-dev libgtk-3-dev
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
- name: Validate formatting
|
|
|
|
run: cargo fmt --all -- --check
|
|
|
|
- name: Validate documentation
|
|
|
|
run: cargo doc --workspace --no-deps --all-features --document-private-items
|
|
|
|
- name: Run clippy lints
|
|
|
|
run: cargo clippy --workspace --no-deps --all-features --all-targets -- -D warnings
|
|
|
|
- name: Run tests
|
|
|
|
run: cargo test --workspace --all-features --all-targets
|
|
|
|
- name: Run valence_nbt tests without preserve_order feature
|
|
|
|
run: cargo test -p valence_nbt --all-targets
|