Alw add helium fees #60
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: Show Changed Models | |
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 }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Check out current branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up dependencies | |
run: | | |
pip install pip==23.1.2 | |
pip install pip-tools==6.13.0 | |
pip install -r requirements.txt | |
- name: Download manifest.json | |
run: | | |
wget https://artemis-xyz.github.io/dbt/manifest.json | |
- name: Show results of changed models | |
run: | | |
dbt deps | |
source dbt_scripts/show_changed.sh |