Skip to content

Commit

Permalink
ci: setup python
Browse files Browse the repository at this point in the history
  • Loading branch information
Zxilly committed Nov 26, 2024
1 parent 1913ddd commit ce64ea7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,5 @@ dkms.conf
/cmake-build-*/

/build/
/third_party/
/third_party/
/venv/

0 comments on commit ce64ea7

Please sign in to comment.