name: Rust on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 with: profile: minimal toolchain: nightly - name: Install dependencies run: sudo apt-get update && sudo apt-get install libsdl2-dev - name: Build run: cargo build --verbose - name: Run tests run: cargo test --verbose