Skip to content

Merge pull request #113 from veg/update-python-support-3.10-3.14 #7

Merge pull request #113 from veg/update-python-support-3.10-3.14

Merge pull request #113 from veg/update-python-support-3.10-3.14 #7

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Install test dependencies
run: |
pip install pytest
- name: Run tests with pytest
run: |
pytest test/
continue-on-error: ${{ matrix.python-version == '3.14' }}
- name: Test installation
run: |
hivtrace --help
hivtrace_strip_drams --help
hivtrace_viz --help