Skip to content

Commit

Permalink
fixup! Import example learning agents
Browse files Browse the repository at this point in the history
  • Loading branch information
juztamau5 committed Mar 10, 2024
1 parent e9da7a4 commit e864d11
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ jobs:
uses: actions/cache@v4
with:
path: openai
key: ${{ runner.os }}-cache-openai-${{ hashFiles('openai/**') }}
key: ${{ runner.os }}-cache-openai-${{ hashFiles('openai/**') }}-

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install OpenAI dependencies
if: steps.cache-openai.outputs.cache-hit != 'true'
Expand All @@ -50,18 +55,13 @@ jobs:
libgtest-dev
python3 -m pip install --upgrade pip setuptools setuptools_scm
- name: Build OpenAI
- name: Build OpenAI modules
if: steps.cache-openai.outputs.cache-hit != 'true'
run: |
cd ../../openai
cmake .
make -j
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
Expand Down

0 comments on commit e864d11

Please sign in to comment.