diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b693d70e2a1..95de05ee925 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -150,3 +150,12 @@ jobs: env: GOARCH: ${{ matrix.arch }} run: make test-short + + test-compatibility: + runs-on: ubuntu-latest + needs: [compatibility-test] + steps: + - name: Test if compatibility-test passed + run: | + echo ${{ needs.compatibility-test.result }} + test ${{ needs.compatibility-test.result }} == "success" \ No newline at end of file