letsplay_runner_core: Add build features to compile out client/server… #14
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
# for now | |
on: push | |
jobs: | |
check: | |
name: cargo test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install EGL development libraries | |
run: sudo apt install libegl1-mesa-dev | |
- name: Install Rust stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- run: | | |
cargo test |