Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ShotaAk committed May 12, 2024
1 parent 047572e commit 89bd12e
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/scenario_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,16 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip'

- name: Cache pip packages
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.cache/pypoetry
key: ${{ runner.os }}-pip-
restore-keys: |
${{ runner.os }}-pip-
- name: Install robocup_scenario_test library
run: |
Expand Down Expand Up @@ -78,7 +87,20 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip'

- name: Cache pip packages
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.cache/pypoetry
key: ${{ runner.os }}-pip-
restore-keys: |
${{ runner.os }}-pip-
- name: Verify pip cache
run: |
python -m pip list
- name: Start Docker Compose services
run: |
Expand Down

0 comments on commit 89bd12e

Please sign in to comment.