Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
14 changes: 14 additions & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Python Tests
on:
push:
pull_request:

jobs:
test:
name: Python tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@v5
- run: make test_prometheus_client_python_parser
Loading