diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index dbc1c57..a480ecf 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -32,3 +32,15 @@ jobs: - name: Test with tox run: | tox + + minimal-dependencies: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Create virtual env + run: python3 -m venv venv --upgrade-deps + - name: Install pyaro + run: venv/bin/activate && pip install ./ + - name: Try importing pyaro + run: venv/bin/activate && python -c "import pyaro; print(pyaro.__version__)" +