Skip to content

prometheus config update (#178) #48

prometheus config update (#178)

prometheus config update (#178) #48

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:
branch_protection_rule:
types:
- created
push:
branches:
- main
- *

Check failure on line 14 in .github/workflows/run-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...