Run database tests on Firebird on dispatch. Run No 17. #17
This file contains hidden or 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
name: 🛠🐦 Firebird tests | |
run-name: Run database tests on Firebird on dispatch. Run No ${{ github.run_number }}. | |
on: | |
workflow_dispatch: | |
inputs: | |
fetch_depth: | |
description: 'Depth of repo fetch (change if SHA populated)' | |
required: false | |
default: 1 | |
type: number | |
specific_sha: | |
description: 'Commit SHA to checkout' | |
required: false | |
default: '' | |
type: string | |
firebird30: | |
description: 'Firebird 3.0' | |
type: boolean | |
default: true | |
required: true | |
# new commits with the same key will cancel previously run workflows | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
jobs: | |
test_on_firebird30: | |
name: Tests on Firebird 3.0 | |
if: ${{ inputs.firebird30 }} | |
strategy: | |
matrix: | |
net: [ 'netcoreapp2.0' ] | |
uses: DataObjects-NET/dataobjects-net/.github/workflows/[email protected] | |
with: | |
storage: firebird30 | |
build_config: Release | |
target_framework: ${{ matrix.net }} | |
specific_sha: ${{ inputs.specific_sha }} | |
fetch_depth: ${{ fromJSON(inputs.fetch_depth) }} | |
test_output_verbosity: minimal | |
test_run_timeout: 40 | |
run_main: true | |
run_sql: true | |
run_extensions: true | |
publish_raw_results: true |