File tree Expand file tree Collapse file tree 1 file changed +37
-2
lines changed Expand file tree Collapse file tree 1 file changed +37
-2
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ permissions:
1313 contents : read
1414
1515jobs :
16- build :
16+ ubuntu :
1717 runs-on : ubuntu-latest
1818 strategy :
1919 matrix :
20- python-version : ['3.11', '3.12']
20+ python-version : ['3.11', '3.12', '3.13' ]
2121
2222 steps :
2323 - uses : actions/checkout@v4
4444 run : |
4545 sudo venv/bin/ugrd -d
4646 sudo venv/bin/python -m unittest discover tests -v
47+
48+ # debian:
49+ # runs-on: ubuntu-latest
50+ # container:
51+ # image: debiani
52+ # strategy:
53+ # matrix:
54+ # python-version: ['3.11', '3.12']
55+ #
56+ # steps:
57+ # - name: Install system deps
58+ # run: |
59+ # apt update
60+ # apt install -y pax-utils qemu-system-x86 git
61+ # - uses: actions/checkout@v4
62+ # - name: Obtain dependency projects
63+ # run: |
64+ # git clone https://github.com/desultory/zenlib
65+ # git clone https://github.com/desultory/pycpio
66+ # - name: Set up Python ${{ matrix.python-version }}
67+ # uses: actions/setup-python@v5
68+ # with:
69+ # python-version: ${{ matrix.python-version }}
70+ # - name: Install python deps
71+ # run: |
72+ # python -m venv venv
73+ # venv/bin/pip install --upgrade pip
74+ # venv/bin/pip install ./zenlib
75+ # venv/bin/pip install ./pycpio
76+ # ls -la
77+ # venv/bin/pip install .
78+ # - name: Test fullauto.toml
79+ # run: |
80+ # venv/bin/ugrd -d
81+ # venv/bin/python -m unittest discover tests -v
You can’t perform that action at this time.
0 commit comments