Skip to content

Prefer using core instead of std whenever possible. #209

Prefer using core instead of std whenever possible.

Prefer using core instead of std whenever possible. #209

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
RUST_VERSION: 1.85
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ env.RUST_VERSION }}
uses: actions-rust-lang/[email protected]
with:
toolchain: ${{ env.RUST_VERSION }}
components: rustfmt, clippy
override: true
- name: Install Alsa
run: sudo apt-get install libasound2-dev
- name: Build
run: cargo build --verbose --workspace --exclude tutorial13-terrain --exclude wgpu_in_web
- name: Run tests
run: cargo test --verbose --workspace --exclude tutorial13-terrain --exclude wgpu_in_web