Skip to content

chore: remove upstream Codespaces workflow #9

chore: remove upstream Codespaces workflow

chore: remove upstream Codespaces workflow #9

Workflow file for this run

name: Livestream
on:
push:
branches:
- master
pull_request:
paths:
- '.github/workflows/ci-livestream.yml'
- 'livestream/**'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: '1.25.5'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
version: latest
working-directory: livestream
args: --timeout=5m
- name: Run tests
run: cd livestream && go test -v