Skip to content

Remove Depandabot Auto Merges and CircleCI References #54

Remove Depandabot Auto Merges and CircleCI References

Remove Depandabot Auto Merges and CircleCI References #54

name: Test Containers Integration Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
repository_dispatch:
types: [ok-to-test]
jobs:
test-build-and-run-testcontainers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Golang
uses: actions/setup-go@v5
with:
go-version-file: go.work
- name: Run Go tests in integration test directory
shell: bash
run: |
set -euo pipefail
# TODO: make WebUI happy when compiling
mkdir -p webui/build
echo "hello test" > webui/build/index.html
cd test_integration
go test -v -count=1 ./...