Files
gw-basic-2026/.github/workflows/ci.yml
Eremey Valetov 701d51938c Fix CI: apt-get update before installing libpulse-dev
The Ubuntu package index on GitHub runners was stale, causing 404s for
libglib2.0 (a transitive dependency of libpulse-dev). Also make the
install non-fatal since PulseAudio is optional.
2026-02-22 13:24:46 -05:00

29 lines
492 B
YAML

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libpulse-dev || true
- name: Build
run: |
mkdir build
cd build
cmake ..
make -j$(nproc)
- name: Test
run: bash tests/run_tests.sh