feat: msaa toggle #232
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, macos-latest] | |
rust-toolchain: | |
- nightly | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup ${{ matrix.rust-toolchain }} rust toolchain with caching | |
uses: brndnmtthws/rust-action@v1 | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rustfmt, clippy | |
enable-sccache: "true" | |
- name: lint | |
run: cargo clippy -- -Dwarnings | |
- name: build | |
run: cargo build | |
- name: build_tools | |
run: cargo build --bin ply_to_gcloud | |
- name: test (default) | |
run: cargo test | |
- name: test (web) | |
run: cargo test --no-default-features --features="web io_ply tooling" | |
# - name: gaussian render test | |
# run: cargo run --bin test_gaussian | |
# - name: radix sort test | |
# run: cargo run --bin test_radix --features="debug_gpu" | |
# TODO: test wasm build, deploy, and run |