Skip to content

Add integration tests #1

Add integration tests

Add integration tests #1

name: Integration Test
on:
workflow_dispatch:
push:
branches:
- '*'
jobs:
integration-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Run integration tests
run: |
cd integration
make test
- name: Upload test logs
if: failure()
uses: actions/upload-artifact@v4
with:
name: test-logs
path: integration/test-output.log