mirror of
https://github.com/italicsjenga/valence.git
synced 2024-12-23 22:41:30 +11:00
33 lines
734 B
YAML
33 lines
734 B
YAML
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
|
|
|
|
- name: Validate formatting on ${{ matrix.os }}
|
|
run: cargo fmt --all -- --check
|
|
- name: Run clippy lints on ${{ matrix.os }}
|
|
run: cargo +stable clippy --tests --no-deps --all-features --all-targets
|
|
- name: Run tests on ${{ matrix.os }}
|
|
run: cargo +stable test --all-features --all-targets
|