fix(deps): update github.com/livekit/protocol digest to 9d0d6c9 - autoclosed #564
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: Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/go/bin | |
~/.cache | |
key: livekit-cli | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- name: Download Go modules | |
run: go mod download | |
- name: Static Check | |
uses: dominikh/staticcheck-action@v1.3.0 | |
with: | |
version: "v0.3.3" | |
install-go: false |