Skip to content

Commit

Permalink
Add bigquery. Tweak params.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Mar 21, 2024
1 parent f9b9a12 commit 29826c6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/internal-archive-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
sha:
description: "The sha to use (leave empty to use latest on main)"
type: string
required: false
required: true

permissions: read-all

Expand Down Expand Up @@ -86,15 +86,15 @@ jobs:
# Testing with Tox
#
- name: "Install Python Dependencies"
if: contains(fromJSON( '["redshift", "snowflake"]' ), inputs.dbms_name)
if: contains(fromJSON( '["redshift", "snowflake", "bigquery"]' ), inputs.dbms_name)
run: |
python -m pip install --user --upgrade pip
python -m pip install tox
python -m pip --version
python -m tox --version
- name: "Run Tests using tox"
if: contains(fromJSON( '["redshift", "snowflake"]' ), inputs.dbms_name)
if: contains(fromJSON( '["redshift", "snowflake", "bigquery"]' ), inputs.dbms_name)
run: tox

#
Expand All @@ -111,11 +111,12 @@ jobs:
####################
# Integration Tests
####################

run-integration-tests:
name: 'Integration Tests (Tox)'
runs-on: ubuntu-latest
needs: [job-setup]
if: contains(fromJSON( '["redshift", "snowflake"]' ), inputs.dbms_name)
if: contains(fromJSON( '["redshift", "snowflake", "bigquery"]' ), inputs.dbms_name)

env:
TOXENV: integration
Expand Down Expand Up @@ -252,7 +253,7 @@ jobs:
# 1. Build with setup.py
#
- name: "Build Distributions - scripts/build-dist.sh"
if: contains(fromJSON( '["redshift", "snowflake"]' ), inputs.dbms_name)
if: contains(fromJSON( '["redshift", "snowflake", "bigquery"]' ), inputs.dbms_name)
run: scripts/build-dist.sh

#
Expand Down

0 comments on commit 29826c6

Please sign in to comment.