feat/client_sdl3: implement audio playback, change some println to lo… #57
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: Run tests | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Install dependencies | |
| run: sudo apt install libpcap-dev libwebkit2gtk-4.0-dev | |
| - name: Install toolchain | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| default: true | |
| override: true | |
| - name: Cache Rust | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Test | |
| run: cargo test | |
| - name: Check formatting | |
| run: cargo fmt --check | |
| - name: Analyze code smells | |
| run: cargo clippy |