Skip to content

update libopus to 1.5.2 #19

update libopus to 1.5.2

update libopus to 1.5.2 #19

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
full:
strategy:
matrix:
go-version:
- 1.21.x
platform:
# Would like to test mac & win too
- ubuntu-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install system dependencies
run: sudo apt-get install moreutils
- name: Checkout code
uses: actions/checkout@v2
# Could be a separate step but this is so quick--just put it here
- name: Lint
run: gofmt -d . | tee /dev/stderr | ifne false
- name: Test
run: go test -race -v .