Automated Latest Dependency Updates #1424
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: Install Test | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- main | |
env: | |
ALTERYX_OPEN_SRC_UPDATE_CHECKER: False | |
jobs: | |
install_ww_complete: | |
name: ${{ matrix.os }} - ${{ matrix.python_version }} install woodwork complete | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python_version: ["3.9", "3.10", "3.11"] | |
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 woodwork package | |
run: | | |
make package | |
- name: Install woodwork with dependencies (not using cache) | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
python -m pip install -e "unpacked_sdist/[complete]" | |
- name: Install woodwork with no dependencies (using cache) | |
if: steps.cache.outputs.cache-hit == 'true' | |
run: | | |
python -m pip install -e "unpacked_sdist/[complete]" --no-deps | |
- name: Test by importing packages | |
run: | | |
python -m pip install "unpacked_sdist/[updater]" | |
python -c "import alteryx_open_src_update_checker" | |
- name: Check package conflicts | |
run: | | |
python -m pip check | |
- name: Verify extra_requires commands | |
run: | | |
python -m pip install "unpacked_sdist/[dask,spark]" |