Skip to content

Integration tests

Integration tests #788

---
name: Integration tests
on:
schedule:
- cron: "0 */4 * * *"
jobs:
integration-test:
runs-on: ubuntu-latest
name: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build
run: go test -run "TestIntegration" -v ./integration_test.go
working-directory: "tests/"