YouTube Update! Added Comments and Video Searching (#152) #88
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
name: "Check Server" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check: | |
name: cargo check | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: [stable, beta, nightly] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install NASM | |
run: sudo apt-get update && sudo apt-get install -y nasm | |
- name: Create necessary folders | |
run: mkdir -p apps/web/out | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy,rustfmt | |
cache: true | |
cache-on-failure: true | |
matcher: true | |
rustflags: "" | |
- run: cargo check -p music-server |