Updated schedule file by adding money/smallmoney and bit arithmetic tests #20895
Workflow file for this run
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: Validate Installation/Upgrade Scripts | |
| on: [push, pull_request] | |
| jobs: | |
| run-sql-validation-tests: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| id: checkout | |
| - name: Install Python | |
| id: install-python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: 'v3.10' | |
| - name: Run tests | |
| id: run-test | |
| if: always() && steps.install-python.outcome == 'success' | |
| run: | | |
| cd test/python | |
| python3 sql_validation.py | |
| - name: Upload artifacts | |
| if: always() && steps.run-test.outcome == 'failure' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: expected-output-files | |
| path: test/python/output/sql_validation_framework/* |