Skip to content

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

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

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

Workflow file for this run

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-latest, windows-latest]
go-version: ["1.19", "1.26"]
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v7
- name: Download Go dependencies
run: go mod download
env:
GOPROXY: "https://proxy.golang.org"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...