Fix handling for TVP to allow mixed declaration of named and unnamed … #132
Workflow file for this run
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
name: Windows JDBC Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: clone-repository | |
uses: actions/checkout@v4 | |
- name: build-and-test | |
run: cmd /c ".github\scripts\windows-build.bat" | |
- name: upload-testinfo | |
uses: actions/upload-artifact@v4 | |
with: | |
name: testinfo | |
path: test/JDBC/Info | |
retention-days: 1 | |
- name: upload-dist | |
if: true | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
retention-days: 1 |