Skip to content

Commit

Permalink
Add python 3.10 job (mlflow#14014)
Browse files Browse the repository at this point in the history
Signed-off-by: harupy <[email protected]>
Signed-off-by: Harutaka Kawamura <[email protected]>
Signed-off-by: k99kurella <[email protected]>
  • Loading branch information
harupy authored and karthikkurella committed Jan 30, 2025
1 parent 1296121 commit 6249cd3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,27 @@ jobs:
--ignore-flavors --ignore=tests/examples --ignore=tests/recipes --ignore=tests/evaluate \
--ignore tests/deployments/server tests
py310:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/untracked
- uses: ./.github/actions/setup-python
with:
python-version: "3.10"
- uses: ./.github/actions/setup-pyenv
- uses: ./.github/actions/setup-java
- uses: ./.github/actions/cache-pip
- name: Install dependencies
run: |
pip install .
- uses: ./.github/actions/show-versions
- name: Run tests
run: |
python -c "import sys; assert sys.version_info[:2] == (3, 10), sys.version_info"
database:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6249cd3

Please sign in to comment.