Skip to content

Corrected writer log #1

Corrected writer log

Corrected writer log #1

Workflow file for this run

name: Test and coverage
on:
push:
branches: [*]

Check failure on line 4 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
pull_request:
branches: [main]
jobs:
test:
name: Run tests
runs-on: 'ubuntu-latest'
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Install Go 1.19.0
uses: actions/setup-go@v2
with:
go-version: '1.19.0'
- name: Run coverage
run: go test ./... -race -coverpkg=./libs/... -coverprofile=coverage.out -covermode=atomic