Skip to content

chore: maintenance things #264

chore: maintenance things

chore: maintenance things #264

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
test-build:
name: 👷 Test & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:

Check failure on line 19 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 19, Col: 14): Unexpected value '' .github/workflows/ci.yaml (Line: 20, Col: 9): Unexpected value 'go-version-file'
go-version-file: 'go.mod'
- name: Test
env:
STREAM_KEY: ${{ secrets.STREAM_KEY }}
STREAM_SECRET: ${{ secrets.STREAM_SECRET }}
run: |
go test -coverprofile cover.out -v -race ./...
go tool cover -func=cover.out