updates to transform blueprint #547
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: Validate Sample Data Previews | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
branches: | |
- "**" | |
jobs: | |
validate-configs: | |
runs-on: ubuntu-latest | |
steps: | |
# Setup and install deps | |
- uses: actions/checkout@v1 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install deps | |
run: | | |
pip install -r requirements.txt | |
# Run tests | |
- name: Unit tests | |
run: | | |
pytest -s -vv test_sample_data_previews.py | |
if: ${{ github.base_ref != 'main' }} | |
# job notif | |
- uses: 8398a7/action-slack@v2 | |
with: | |
status: ${{ job.status }} | |
author_name: Validate Sample Data Previews | |
only_mention_fail: here | |
env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
if: always() |