Skip to content

Commit

Permalink
added python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
hariharan-devarajan committed Sep 25, 2023
1 parent 909d5c2 commit e16bbf0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
os: [ ubuntu-20.04, ubuntu-22.04 ]
profiler: [ DEFAULT, DLIO_PROFILER ]
gcc: [10]
name: ${{ matrix.os }}-${{ matrix.profiler }}-${{ matrix.gcc }}
python: [3.8, 3.9, 3.10]
name: ${{ matrix.os }}-${{ matrix.profiler }}-${{ matrix.gcc }}-${{ matrix.python }}
runs-on: ${{ matrix.os }}
env:
VENV: "/home/runner/work/venv"
Expand All @@ -21,12 +22,13 @@ jobs:
CXX: g++-${{ matrix.gcc }}
RDMAV_FORK_SAFE: "1"
DLIO_PROFILER_LOG_LEVEL: "INFO"
PYTHON_VER: ${{ matrix.python }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
- name: Set up Python ${{ env.PYTHON_VER }}
uses: actions/setup-python@v3
with:
python-version: 3.10.5
python-version: ${{ env.PYTHON_VER }}
- name: Cache install modules
id: cache-modules
uses: actions/cache@v2
Expand Down

0 comments on commit e16bbf0

Please sign in to comment.