Skip to content

Commit

Permalink
different python versions
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Koenig <[email protected]>
  • Loading branch information
ko3n1g committed Nov 28, 2024
1 parent a312b81 commit b000203
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/import-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,20 @@ on:
# Check https://hub.docker.com/r/pytorch/pytorch/tags for latest tags
jobs:
test-imports:
name: test-${{ matrix.collection }}-import-${{ matrix.os }}
name: test-${{ matrix.collection }}-import-${{ matrix.os }}-py${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
collection: [asr, tts]
python: [3.10, 3.11, 3.12]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '${{ matrix.python }}'
- name: Build wheel
id: nemo-wheel
run: |
Expand Down

0 comments on commit b000203

Please sign in to comment.