Skip to content

Commit

Permalink
Add Github Actions for Golang workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Silva Sens <[email protected]>
  • Loading branch information
ArthurSens committed Jan 28, 2025
1 parent d5d432e commit 10aa21d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Go Tests
on:
push:
pull_request:

jobs:
test:
name: Go tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@v5
- run: cd ./src && make binaries
- run: cd ./src && go test ./...
- run: make test-impl cmd-parser-text=echo
- run: make test_open_metrics_validator

0 comments on commit 10aa21d

Please sign in to comment.