Skip to content

Commit

Permalink
set up C++ dev tools and libs
Browse files Browse the repository at this point in the history
  • Loading branch information
petiaccja committed Jul 6, 2022
1 parent 5b01ca2 commit 1307bad
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
tox-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10"]
Expand All @@ -34,6 +34,12 @@ jobs:
- name: Install python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
- name: Set up C++ devtools
uses: seanmiddleditch/gha-setup-ninja@v3
- name: Install C++ dependencies
run: |
sudo apt install pybind11-dev
sudo apt install libboost-all-dev
- name: Test with tox
run: |
pyversion_no_dot="${{ matrix.python-version }}"
Expand Down

0 comments on commit 1307bad

Please sign in to comment.