Skip to content

celt: fix a small typo in comment in interp_bits2pulses() (rate.c) #134

celt: fix a small typo in comment in interp_bits2pulses() (rate.c)

celt: fix a small typo in comment in interp_bits2pulses() (rate.c) #134

Workflow file for this run

name: Makefile
on: [push, pull_request]
jobs:
MakefileBuild:
name: Makefile/${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Linux/GCC",
os: ubuntu-latest,
compiler: gcc,
}
steps:
- uses: actions/checkout@v3
- name: Build
run: make -f Makefile.unix -j 2
- name: Test
run: make -f Makefile.unix check -j 2
- name: Clean
run: make -f Makefile.unix clean