Stored the permissions in a single column using bits #10194
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: Validate Installation/Upgrade Scripts | |
on: [push, pull_request] | |
jobs: | |
run-sql-validation-tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
id: checkout | |
- name: Install Python | |
id: install-python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- 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@v2 | |
with: | |
name: expected-output-files | |
path: test/python/output/sql_validation_framework/* |