Update license special cases for updated versions. #75
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: Test | |
on: | |
pull_request: | |
workflow_call: | |
secrets: | |
BIGQUERY_KEY: | |
required: true | |
SNOWFLAKE_CONNECTION: | |
required: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18.x" | |
- name: Use Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9" | |
- name: GCloud auth | |
uses: "google-github-actions/auth@v2" | |
with: | |
credentials_json: "${{ secrets.BIGQUERY_KEY }}" | |
- name: Install and test | |
run: | | |
python3 -m pip install --upgrade pip --user | |
python3 -m pip install pip-tools --user | |
python3 -m pip install -r requirements.dev.txt --user | |
python3 -m pip install -e . --user | |
python3 -m pylint src tests | |
python3 -m yapf --diff --recursive src tests | |
./scripts/gen-services.sh | |
./scripts/gen-snowflake-auth.sh | |
python3 -m pytest --junitxml=junit/test-results.xml -rxXs | |
env: | |
CI: true | |
SNOWFLAKE_CONNECTION: ${{ secrets.SNOWFLAKE_CONNECTION }} |