Skip to content

Automated Minimum Dependency Updates #1912

Automated Minimum Dependency Updates

Automated Minimum Dependency Updates #1912

Workflow file for this run

name: Install Test
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
env:
# Disables API requests which is not needed for testing.
ALTERYX_OPEN_SRC_UPDATE_CHECKER: False
jobs:
install:
name: ${{ matrix.os }} - ${{ matrix.python_version }} install evalml
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python_version: ["3.9", "3.10", "3.11"]
exclude:
- os: macos-latest
python-version: "3.8"

Check failure on line 21 in .github/workflows/install_test.yaml

View workflow run for this annotation

GitHub Actions / Install Test

Invalid workflow file

The workflow is not valid. .github/workflows/install_test.yaml (Line: 21, Col: 13): Matrix exclude key 'python-version' does not match any key within the matrix
runs-on: ${{ matrix.os }}
steps:
- 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: Set up python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- uses: actions/cache@v3
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ matrix.os- }}-${{ matrix.python_version }}-install-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml') }}-v01
- name: Build evalml package
run: make package
- name: Install evalml from sdist (not using cache)
if: steps.cache.outputs.cache-hit != 'true'
run: |
python -m pip install "unpacked_sdist/."
- name: Install evalml from sdist (using cache)
if: steps.cache.outputs.cache-hit == 'true'
run: |
python -m pip install "unpacked_sdist/." --no-deps
- name: Test by importing packages
run: |
python -c "import evalml"
python -c "from evalml.demos import load_fraud; load_fraud(n_rows=10)"
python -c "from evalml.demos import load_churn; load_churn(n_rows=10)"
- name: Check package conflicts
run: |
python -m pip check
- name: Verify extra_requires commands
run: |
python -m pip install "unpacked_sdist/[updater]"
- name: Test by importing packages
run: |
python -c "import alteryx_open_src_update_checker"