From 2c3d9d7b35d394331525177e09908e57ff037a14 Mon Sep 17 00:00:00 2001 From: Helber Belmiro Date: Tue, 9 Jul 2024 14:56:13 -0300 Subject: [PATCH] test: Moved KFP backend visualization tests to GitHub Actions (#10984) Signed-off-by: hbelmiro --- .github/workflows/backend-visualization.yml | 26 +++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/backend-visualization.yml diff --git a/.github/workflows/backend-visualization.yml b/.github/workflows/backend-visualization.yml new file mode 100644 index 00000000000..8df4ff0c7a6 --- /dev/null +++ b/.github/workflows/backend-visualization.yml @@ -0,0 +1,26 @@ +name: KFP backend visualization tests + +on: + push: + branches: [ master ] + + pull_request: + paths: + - '.github/workflows/backend-visualization.yml' + - 'backend/src/apiserver/visualization/**' + - 'test/presubmit-backend-visualization.sh' + +jobs: + backend-visualization-test: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.8' + + - name: Run tests + run: ./test/presubmit-backend-visualization.sh