Skip to content

chore: dropped python-3.7 and added 3.9 to 3.12 #48

chore: dropped python-3.7 and added 3.9 to 3.12

chore: dropped python-3.7 and added 3.9 to 3.12 #48

Workflow file for this run

name: PortageClusterUtils test suite
on: [push]
jobs:
test-on-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: >
source SETUP.bash
&& cd tests
&& echo "Using $(nproc) threads"
&& ./run-all-tests.sh -j 5