Skip to content

bump

bump #5

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test App
on:
push:
branches: [ "orchestration" ]
pull_request:
branches: [ "orchestration" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Create dbt profile
env:
PROFILES_YML: ${{ secrets.PROFILES_YML }}
run: |
mkdir -p ~/.dbt
echo $PROFILES_YML > ~/.dbt/profiles.yml
echo "Number of chars in ~/.dbt/profiles.yml: $(wc -c ~/.dbt/profiles.yml)"
cat ~/.dbt/profiles.yml >&2
- name: Execute dbt debug
run: |
dbt debug