Update to use OpenDP 0.8.0 #120
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: SQL code linter | |
on: | |
pull_request: | |
paths: | |
- 'sql/snsql/**' | |
- '!sql/tests/setup/postgres/**' | |
- '!sql/tests/setup/sqlserver/**' | |
- '!sql/tests/setup/mysql/**' | |
- '!sql/tests/setup/biqquery/**' | |
workflow_dispatch: | |
jobs: | |
lint-sql: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.9'] | |
max-parallel: 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
auto-update-conda: true | |
auto-activate-base: true | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
shell: bash -l {0} | |
run: | | |
conda install pip | |
conda update pip | |
- name: Install smartnoise-sql | |
shell: bash -l {0} | |
run: | | |
cd sql | |
pip install --no-cache-dir . | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
cd sql | |
pip install --no-cache-dir -r tests/requirements.txt | |
- name: Lint with flake8 | |
shell: bash -l {0} | |
run: | | |
conda install flake8 | |
flake8 sql/snsql/sql/dpsu.py -v | |
flake8 sql/snsql/reader/ -v |