name: C/C++ CI on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Install Dependencies run: sudo apt-get update && sudo apt-get install -y build-essential ffmpeg - name: Build run: make - name: Run Unit Tests run: make test