Skip to content

Migrate Backend tests to a GHA workflow #2

Migrate Backend tests to a GHA workflow

Migrate Backend tests to a GHA workflow #2

name: KFP Backend Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
paths:
- 'backend/**'
- 'test/presubmit-backend-test.sh'
workflow_dispatch:
jobs:
backend-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: Run Backend Tests
run: ./test/presubmit-backend-test.sh
shell: bash