diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89ba6da2..ec837e45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: | diff --git a/.gitignore b/.gitignore index d6bd7f5e..86760bbd 100644 --- a/.gitignore +++ b/.gitignore @@ -77,4 +77,5 @@ dkms.conf /cmake-build-*/ /build/ -/third_party/ \ No newline at end of file +/third_party/ +/venv/ \ No newline at end of file