feat: change skip message log level to debug and add Pretty for writing headers #111
Workflow file for this run
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: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- uses: actions/checkout@v3 | |
- name: Start containers | |
run: make integration-compose | |
- uses: actions/checkout@v3 | |
- name: Integration Test | |
run: go test -timeout=15m -v test/integration/integration_test.go | |
env: | |
INPUT_PUBLISH: false | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |