Skip to content

Commit

Permalink
test: Moved KFP backend visualization tests to GitHub Actions (#10984)
Browse files Browse the repository at this point in the history
Signed-off-by: hbelmiro <[email protected]>
  • Loading branch information
hbelmiro authored Jul 9, 2024
1 parent 0eae430 commit 2c3d9d7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/backend-visualization.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2c3d9d7

Please sign in to comment.