feat: add metric prefix config and expose metricCollectors (#106) #225
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🔨IntegrationTest | |
on: | |
push: | |
branches: [v2] | |
pull_request: | |
branches: [v2] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.19 | |
- uses: actions/checkout@v4 | |
- name: Start containers | |
run: docker compose -f test/integration/docker-compose.yml up --wait --build --force-recreate --remove-orphans | |
- uses: actions/checkout@v4 | |
- name: Integration Test | |
run: go test -v test/integration/integration_test.go | |
env: | |
INPUT_PUBLISH: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |