Skip to content

add libboost-dev-all dependency to github test action #6

add libboost-dev-all dependency to github test action

add libboost-dev-all dependency to github test action #6

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: sudo apt install libboost-dev-all
- name: Install dependencies
run: pip install ".[dev]"
- name: Test with pytest
run: pytest tests