Lines Matching +full:python +full:- +full:version
1 name: Python
6 - main
13 os: [ubuntu-24.04]
15 python-version: ['3.x']
17 runs-on: ${{ matrix.os }}
20 - name: Environment setup
22 - name: Python setup
23 uses: actions/setup-python@v5
25 python-version: ${{ matrix.python-version }}
26 - name: Python dependencies
28 pip install -r requirements.txt
29 pip install -r requirements-test.txt
30 - name: Python test
36 make -j2
39 cd python/tests
40 PYTHON=python3 make test TEST_OPTS="--ceed /cpu/self/ref/serial -vv"
41 cd ../../examples/python
42 PYTHON=python3 make test TEST_OPTS="--ceed /cpu/self/ref/serial -vv"
44 - name: Python style
49 make format-py && git diff --exit-code
50 - name: Python version