Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Sep 25, 2023
1 parent 051e9f5 commit 2fed738
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
- name: Upgrade pip
run: pip install -U pip setuptools
- name: Install lightfm
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package
run: pip install .[dev]
- name: make test-devel
Expand All @@ -38,8 +40,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
- name: Upgrade pip
run: pip install -U pip setuptools
- name: Install lightfm
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package and dependencies
run: pip install rundoc .[mlprimitives]
- name: make test-readme
Expand Down Expand Up @@ -74,8 +78,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
- name: Upgrade pip
run: pip install -U pip setuptools
- name: Install lightfm
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package and dependencies
run: pip install .[test]
- name: make test-mlprimitives
Expand All @@ -96,8 +102,10 @@ jobs:
- if: matrix.os == 'ubuntu-20.04'
name: Install dependencies - Ubuntu
run: sudo apt-get install graphviz
- name: Update pip
- name: Upgrade pip
run: pip install -U pip setuptools
- name: Install lightfm
run: python -m pip install --no-use-pep517 'lightfm<2'
- name: Install package and dependencies
run: pip install .[examples]
- name: make test-tutorials
Expand Down

0 comments on commit 2fed738

Please sign in to comment.