Preparing 3.6.2 Release Changelog #48
Workflow file for this run
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: dev-pytest | |
defaults: | |
run: | |
shell: bash | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
tags: | |
- "v*" # Push events to matching v*, i.e. v3.6.2, v4.0.0 | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
scenario-name: [ 'basics_demo', 'citibike_demo', 'citibike_demo_jinja'] | |
os: ["ubuntu-latest"] | |
python-version: ["3.11"] | |
runs-on: ${{ matrix.os }} | |
env: | |
SNOWFLAKE_PASSWORD: ${{ secrets.SCHEMACHANGE_SNOWFLAKE_PASSWORD }} | |
SNOWFLAKE_USER: ${{ secrets.SCHEMACHANGE_SNOWFLAKE_USER }} | |
SNOWFLAKE_ACCOUNT: ${{ secrets.SCHEMACHANGE_SNOWFLAKE_ACCOUNT }} | |
SNOWFLAKE_DATABASE: SCHEMACHANGE_DEMO | |
SNOWFLAKE_WAREHOUSE: SCHEMACHANGE_DEMO_WH | |
SNOWFLAKE_ROLE: SCHEMACHANGE_DEMO_DEPLOY | |
MY_TARGET_SCHEMA: ${{ matrix.scenario-name }}_${{ github.run_number }}_${{ strategy.job-index }} | |
SCENARIO_NAME: ${{ matrix.scenario-name }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Update pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install dependencies | |
run: | | |
python -m pip install -e .[dev] | |
- name: Test with pytest | |
id: pytest | |
run: | | |
pytest | |
- name: Test Schemachange on ${{ matrix.os }} targeting ${{ env.SNOWFLAKE_DATABASE }}.${{ env.MY_TARGET_SCHEMA }} schema | |
run: | | |
echo "::group::Setting up ${MY_TARGET_SCHEMA}" | |
schemachange deploy --config-folder ./demo/setup/${SCENARIO_NAME} | |
echo "::endgroup::" | |
echo "::group::Testing Rendering to ${MY_TARGET_SCHEMA}" | |
schemachange render --config-folder ./demo/${SCENARIO_NAME} ./demo/${SCENARIO_NAME}/A__render.sql | |
schemachange render --config-folder ./demo/${SCENARIO_NAME} ./demo/${SCENARIO_NAME}/R__render.sql | |
schemachange render --config-folder ./demo/${SCENARIO_NAME} ./demo/${SCENARIO_NAME}/V1.0.0__render.sql | |
echo "::endgroup::" | |
echo "::group::Testing Deployment using ${MY_TARGET_SCHEMA}" | |
schemachange deploy --config-folder ./demo/${SCENARIO_NAME} | |
RESULT=$? | |
if [ $RESULT -eq 0 ]; then | |
echo "Deployment Completed!" | |
else | |
echo "Deployment Failed. Proceeding to Teardown." | |
fi | |
echo "::endgroup::" | |
echo "::group::Tearing down up ${MY_TARGET_SCHEMA}" | |
schemachange deploy --config-folder ./demo/teardown/${SCENARIO_NAME} | |
echo "::endgroup::" | |
if [ $RESULT -ne 0 ]; then | |
exit 1 | |
fi |