delete bootstrap-template.py #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This workflow runs (some of) the client test for the DuckDB extension. These should only be used when necessary, writing | |
# regular SQL tests is generally preferable. Feel free to remove this workflow for your extension. | |
# | |
name: Client specific tests | |
on: [push, pull_request, repository_dispatch] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
client-tests: | |
name: Client Tests | |
uses: duckdb/duckdb/.github/workflows/_extension_client_tests.yml@v0.9.2 | |
with: | |
duckdb_version: v0.9.2 |