Fix install test and uncap kaleido #1738
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: Check conda versions | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [ opened, synchronize ] | |
paths: | |
- 'pyproject.toml' | |
- 'evalml/tests/dependency_update_check/*.txt' | |
jobs: | |
check_versions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
- name: Install Dependencies | |
run: | | |
make installdeps-test | |
- name: Clone Feedstock & Check Versions | |
run: | | |
python .github/conda_version_check.py |