Skip to content

Clean up README

Clean up README #124

Workflow file for this run

name: Build
on: push
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Bevy has some additional dependencies on Linux
# https://github.com/bevyengine/bevy/blob/9788b386c7846c99978ab5c1a33698ec5a471d84/.github/workflows/ci.yml
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Build
run: cargo build --all-targets
- name: Build doc
run: cargo doc --no-deps
- name: Run tests
run: cargo test