Skip to content

Commit 96e4894

Browse files
authored
Merge pull request #90 from desultory/dev
Add python 3.13 tests
2 parents 22cf54d + 8c37a20 commit 96e4894

File tree

1 file changed

+37
-2
lines changed

1 file changed

+37
-2
lines changed

.github/workflows/ubuntu.yml renamed to .github/workflows/tests.yml

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ permissions:
1313
contents: read
1414

1515
jobs:
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
@@ -44,3 +44,38 @@ jobs:
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

0 commit comments

Comments
 (0)