Skip to content

Commit

Permalink
.github/workflows: add a tox-venv test
Browse files Browse the repository at this point in the history
Run all of our python tests in all possible venvs one each PR.
  • Loading branch information
allisonkarlitskaya committed Jul 3, 2023
1 parent 8a404ba commit 30d04ae
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/python-venv.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: python
on:
pull_request:

venv:
runs-on: ubuntu-latest
permissions: {}
container:
image: registry.fedoraproject.org/fedora:38
timeout-minutes: 10
steps:
- name: Install tox
run: sudo dnf install -y tox

- name: Clone repository
uses: actions/checkout@v3

- name: Run tests
run: tox -m venv

0 comments on commit 30d04ae

Please sign in to comment.