Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Scullin committed Mar 20, 2024
1 parent 0bd96e7 commit 78df919
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/db-bigquery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: BigQuery DB

on: [push]

jobs:
test-bigquery:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: GCloud auth
uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.BIGQUERY_KEY }}'
- name: npm install, build, and test
run: |
npm ci --loglevel error
npm run build
npm run test-silent
env:
CI: true
MALLOY_DATABASES: bigquery
2 changes: 1 addition & 1 deletion .github/workflows/db-motherduck.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: MotherDuck DB

on: [push]
on: [pull_request]

jobs:
test-motherduck:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/db-postgres.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Postgres DB

on: [push]
on: [pull_request]

jobs:
# Label of the container job
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/db-snowflake.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Snowflake DB

on: [push]
on: [pull_request]

jobs:
test-snowflake:
Expand Down

0 comments on commit 78df919

Please sign in to comment.