Skip to content

workflow: Add github test & coverage actions #3

workflow: Add github test & coverage actions

workflow: Add github test & coverage actions #3

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ['1.21', '1.22', '1']

Check failure on line 22 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 22, Col: 21): A sequence was not expected
- name: Vet
run: go vet -v ./...
- name: Test
run: go test -v ./...
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}