Skip to content

Commit

Permalink
add env variable per issue 401
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahyelle committed Nov 22, 2022
1 parent fa4b1ef commit 69fb3b9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -17,10 +17,12 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
- name: Install tools
run: |
python -m pip install --upgrade pip
Expand All @@ -44,9 +46,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
env:
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 69fb3b9

Please sign in to comment.