ci: setup python

This commit is contained in:
Zxilly 2024-11-26 16:17:49 +08:00
parent 1913ddda38
commit ce64ea713c
No known key found for this signature in database
GPG Key ID: 47AB1DEC841BC6A2
2 changed files with 8 additions and 2 deletions

View File

@ -87,9 +87,14 @@ jobs:
sudo apt-get update
sudo apt-fast install -y cmake libnetfilter-queue-dev libmnl-dev libnetfilter-conntrack-dev
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install requirements
run: |
pip install --user -r scripts/requirements.txt
pip install -r scripts/requirements.txt
- name: Run unit tests
run: |

3
.gitignore vendored
View File

@ -77,4 +77,5 @@ dkms.conf
/cmake-build-*/
/build/
/third_party/
/third_party/
/venv/