mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-05 09:00:36 -06:00
25 lines
618 B
YAML
25 lines
618 B
YAML
name: Test Data Dump Loading integrations
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'go/**'
|
|
- 'integration-tests/**'
|
|
|
|
concurrency:
|
|
group: ci-data-dump-loading-tests-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
data_dump_laoding_integrations_job:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 30
|
|
name: Run tests
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Copy go package
|
|
run: cp -r ./go ./integration-tests/go
|
|
- name: Test data dump loading integrations
|
|
uses: ./.github/actions/data-dump-loading-tests
|