Skip to content

CTORM cumulus load tester #245

CTORM cumulus load tester

CTORM cumulus load tester #245

Workflow file for this run

name: Test
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: '3.9'
package: other
- python-version: '3.10'
package: other
- python-version: '3.11'
package: other
- python-version: '3.12'
package: other
- python-version: '3.12'
package: ctorm
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry "tox<4.0.0" tox-poetry tox-gh-actions
- name: Run tests
run: |
make tests
if [ "${{ matrix.package }}" = "ctorm" ]; then
# ctorm supports py312 only.
make ctorm-tests
fi