Skip to content

Updated installation instructions for new TensorFlow version for osl-… #1025

Updated installation instructions for new TensorFlow version for osl-…

Updated installation instructions for new TensorFlow version for osl-… #1025

name: osl-cicd-actions
on: [push]
jobs:
osl-cicd:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[full]
- name: Run test suite
run: |
pytest