feat(e_window): integrate cross-platform screen size detection with e… #274
This file contains hidden or 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: Rust | |
| on: | |
| push: | |
| branches: [ "develop" ] | |
| pull_request: | |
| branches: [ "develop" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install speech-dispatcher development headers | |
| run: sudo apt-get update && sudo apt-get install -y libspeechd-dev | |
| - name: Install ALSA development libraries | |
| run: sudo apt-get update && sudo apt-get install -y libasound2-dev | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Run tests | |
| run: cargo test --verbose -- --skip test_bacon_help --skip test_bacon_version --skip testgen_ex_builtin --skip test_sample_count_in_testgen_ex_project --skip test_single_example_functionality | |