Skip to content

Fix io timeout problem #2

Fix io timeout problem

Fix io timeout problem #2

Workflow file for this run

name: IntegrationTest
on:
push:
branches:
- master
- feature/integration-test
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 compose
- uses: actions/checkout@v3
- name: Integration Test
run: go test -v test/integration/integration_test.go
env:
INPUT_PUBLISH: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}