Skip to content

feat(aac): decode the AudioSpecificConfig header for any audio object type #417

feat(aac): decode the AudioSpecificConfig header for any audio object type

feat(aac): decode the AudioSpecificConfig header for any audio object type #417

Workflow file for this run

name: Coverage
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: stable
- name: Generate coverage
run: go test -coverpkg=./... -coverprofile=profile.cov ./...
- name: Upload coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
github-token: ${{ secrets.GITHUB_TOKEN }}