docs: add top-level doc strings for mp4ff-encrypt and mp4ff-decrypt #647
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [macos-latest, ubuntu-latest, windows-latest] | |
go-version: ["1.13", "1.20"] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- 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 ./... |