Skip to content

Commit

Permalink
Try setting the python env variable in julia actions
Browse files Browse the repository at this point in the history
  • Loading branch information
askprash committed Jul 2, 2024
1 parent 91793f9 commit ec93b1a
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ jobs:
- x64
steps:
- uses: actions/checkout@v4
- name: Set up 🐍 ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}

- name: Display Python version
run: python -c "import sys; print(sys.version)"

- run: pip install matplotlib==3.8.4

- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
Expand All @@ -34,17 +44,17 @@ jobs:
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: actions/setup-python@v5
with:
python-version: '3.9'
#cache: 'pip' # caching pip dependencies
- run: pip install matplotlib==3.8.4
# - uses: actions/setup-python@v5
# with:
# python-version: '3.9'
# #cache: 'pip' # caching pip dependencies
# - run: pip install matplotlib==3.8.4
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: ""
PYTHON: python
- uses: julia-actions/julia-runtest@v1
env:
PYTHON: ""
PYTHON: python
with:
depwarn: error
- uses: julia-actions/julia-processcoverage@v1
Expand Down

0 comments on commit ec93b1a

Please sign in to comment.