Skip to content

Test Containers Trial #4

Test Containers Trial

Test Containers Trial #4

Workflow file for this run

name: Test Containers Trial
on:
push:
branches: [ "jamlo/support-test-containers" ]
pull_request:
branches: [ "jamlo/support-test-containers" ]
jobs:
test-build-and-run-testcontainers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Run Go tests in integration test directory
run: |
mkdir -p webui/build
echo "hello test" > webui/build/index.html
cd test_integration
go test -v -count=1 ./...