Skip to content

Artemis Wrapped: adding wrapped queries #1761

Artemis Wrapped: adding wrapped queries

Artemis Wrapped: adding wrapped queries #1761

Workflow file for this run

name: Compile
on:
push:
branches: main
pull_request_target:
branches: main
env:
SYSTEM_SNOWFLAKE_USER: ${{ secrets.SYSTEM_SNOWFLAKE_USER }}
SYSTEM_SNOWFLAKE_PASSWORD: ${{ secrets.SYSTEM_SNOWFLAKE_PASSWORD }}
SYSTEM_SNOWFLAKE_ROLE: ${{ secrets.SYSTEM_SNOWFLAKE_ROLE }}
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Check out PR
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Init dbt
uses: ./.github/actions/init-dbt
- name: Compile
run: |
dbt deps
dbt compile --threads 16