diff --git a/.gitea/workflows/test-integration.yml b/.gitea/workflows/test-integration.yml new file mode 100644 index 00000000..99fe58e4 --- /dev/null +++ b/.gitea/workflows/test-integration.yml @@ -0,0 +1,19 @@ +name: Integration Tests +on: + pull_request: + push: + branches: + - main + +jobs: + test-integration: + runs-on: ubuntu-latest + steps: + - uses: actions/setup-go@v3 + with: + go-version: 1.21 + check-latest: true + - uses: actions/checkout@v3 + - name: Test + run: | + make test-integration diff --git a/tests/Makefile b/tests/Makefile index d325c7ef..3ed7cfec 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,2 +1,2 @@ test-integration: - go test -mod=readonly ./integration/... -test.v -timeout 30m + go test -mod=readonly ./integration/... -test.v -timeout 10m