-
Notifications
You must be signed in to change notification settings - Fork 11
36 lines (35 loc) · 1.26 KB
/
entry_point_with_latest_deps.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
name: Entry Point Tests - Latest Dependencies
jobs:
entry_point_test:
name: Entry Point Test - Python ${{ matrix.python_version }} - Featuretools ${{ matrix.featuretools_version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python_version: ["3.9", "3.10", "3.11"]
featuretools_version: ["Release", "Main"]
steps:
- name: Set up python ${{ matrix.python_version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Install requirements
run: |
pip config --site set global.progress_bar off
make installdeps-complete
- if: ${{ matrix.featuretools_version == 'Main' }}
name: Install latest version of Featuretools from main branch
run: pip install git+https://github.com/alteryx/featuretools.git@main#egg=featuretools --force-reinstall
- name: Test entry point
run: make entry-point-test