Skip to content

Commit

Permalink
Update gha
Browse files Browse the repository at this point in the history
  • Loading branch information
polyaxon-ci committed Dec 6, 2024
1 parent dc43e86 commit 9d1f68d
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions .github/workflows/haupt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,50 @@ name: Tests
on:
push:
branches:
- master
- testing
- master
- testing
jobs:
library:
# if: github.event.comment.body == 'test core'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']
steps:
- run: |
pip install -U haupt
- run: |
pip install -U haupt
local-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
which python
python -m pip install --upgrade pip
- name: Install test dependencies
run: pip install -r haupt/requirements/test.txt
- name: Install platform test dependencies
run: pip install -r haupt/requirements/platform-test.txt
- name: Install dev dependencies
run: pip install -r haupt/requirements/dev.txt
- name: Install master dependencies
run: pip install -r haupt/requirements/master.txt
- name: Install required dependencies
run: pip install -r haupt/requirements/requirements.txt
- name: Install platform dependencies
run: pip install -r haupt/requirements/platform.txt
- name: Install streams dependencies
run: pip install -r haupt/requirements/streams.txt
- name: Test with sqlite locally
run: cmd/test local-sqlite
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
which python
python -m pip install --upgrade pip
- name: Install test dependencies
run: pip install -r haupt/requirements/test.txt
- name: Install platform test dependencies
run: pip install -r haupt/requirements/platform-test.txt
- name: Install dev dependencies
run: pip install -r haupt/requirements/dev.txt
- name: Install master dependencies
run: pip install -r haupt/requirements/master.txt
- name: Install required dependencies
run: pip install -r haupt/requirements/requirements.txt
- name: Install platform dependencies
run: pip install -r haupt/requirements/platform.txt
- name: Install streams dependencies
run: pip install -r haupt/requirements/streams.txt
- name: Test with sqlite locally
run: cmd/test local-sqlite
container-sqlite-tests:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 9d1f68d

Please sign in to comment.