Skip to content

Commit

Permalink
Minimal deps test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusuMET committed Nov 12, 2024
1 parent 7fd66d8 commit b1a5717
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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__)"

0 comments on commit b1a5717

Please sign in to comment.