Run database tests on SQLite on dispatch. Run No 19. #19
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: 🛠🦅 SQLite tests | |
run-name: Run database tests on SQLite on dispatch. Run No ${{ github.run_number }}. | |
on: | |
workflow_dispatch: | |
inputs: | |
specific_sha: | |
description: 'Commit SHA to checkout' | |
required: false | |
default: '' | |
type: string | |
show_all_fails: | |
description: 'No mute tests' | |
type: boolean | |
default: false | |
required: true | |
sqlite3: | |
description: 'SQLite 3' | |
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_sqlite3: | |
name: Tests on SQLite 3 | |
if: ${{ inputs.sqlite3 }} | |
strategy: | |
matrix: | |
net: [ 'net5.0', 'net6.0' ] | |
uses: DataObjects-NET/dataobjects-net/.github/workflows/[email protected] | |
with: | |
storage: sqlite3 | |
build_config: Release | |
target_framework: ${{ matrix.net }} | |
specific_sha: ${{ inputs.specific_sha }} | |
show_all_fails: ${{ fromJSON(inputs.show_all_fails) }} | |
test_output_verbosity: minimal | |
test_run_timeout: 30 | |
run_main: true | |
run_sql: true | |
run_extensions: true | |
publish_raw_results: true |