Update repo for 1.1 #87
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: Tecton Feature Repo Test | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
cache: 'pip' | |
- run: pip install -r requirements.txt | |
- name: Run tecton test | |
run: tecton init; tecton test | |
env: | |
# Set the `TECTON_TEST_SPARK` var since the Tecton sample repo skips | |
# tests if this variable is not set. | |
TECTON_TEST_SPARK: 1 |