Update latest dependencies (#1865) #287
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: Kickoff Featuretools & EvalML Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
kickoff: | |
name: Run FT and EvalML unit tests | |
if: github.repository_owner == 'alteryx' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Run workflow for Featuretools unit tests | |
run: gh workflow run tests_with_woodwork_main_branch.yaml --repo "alteryx/featuretools" | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }} | |
- name: Run workflow for EvalML unit tests | |
run: gh workflow run unit_tests_with_woodwork_main_branch.yaml --repo "alteryx/evalml" | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }} |