Skip to content

Bugfix: fix Ogg packets spanning multiple pages #6

Bugfix: fix Ogg packets spanning multiple pages

Bugfix: fix Ogg packets spanning multiple pages #6

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pre-commit:
name: Pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.3.1
- uses: actions/setup-python@v5.6.0
with:
python-version: '3.12'
- uses: pre-commit/action@v3.0.1
lint:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.3.1
- name: Install clang-tidy
run: |
sudo apt-get update
sudo apt-get install -y clang-tidy
- name: Run clang-tidy
run: ./script/clang-tidy.sh
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.3.1
- name: Configure CMake
run: cmake -B build
- name: Build
run: cmake --build build