From c6e8ac5f322e0779645a9c380293d8864afa72bf Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Tue, 12 Nov 2024 11:50:50 +0100 Subject: [PATCH] Minimal deps test in CI --- .github/workflows/ci_tests.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index dbc1c57..ec9080b 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: source venv/bin/activate && pip install ./ + - name: Try importing pyaro + run: source venv/bin/activate && python -c "import pyaro; print(pyaro.__version__)" +