Update latest dependencies (#1788) #231
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 "Unit Tests - Featuretools with Woodwork main branch" --repo "alteryx/featuretools" | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }} | |
- name: Run workflow for EvalML unit tests | |
run: gh workflow run "Unit Tests - EvalML with Woodwork main branch" --repo "alteryx/evalml" | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_SCOPED_TOKEN }} |