diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index cc1196fccf..79b8d24f64 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -128,3 +128,18 @@ jobs: - name: run sync tests run: make test-integration SHORT=true TAGS=sync + + pruning_tests: + name: Integration Tests Sync + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: set up go + uses: actions/setup-go@v5 + with: + go-version: ${{ inputs.go-version }} + + - name: run sync tests + run: make test-integration SHORT=true TAGS=pruning diff --git a/nodebuilder/tests/prune_test.go b/nodebuilder/tests/prune_test.go index 59b665e141..720f6397ef 100644 --- a/nodebuilder/tests/prune_test.go +++ b/nodebuilder/tests/prune_test.go @@ -1,3 +1,5 @@ +//go:build pruning || integration + package tests import (