Skip to content

Commit 958eebb

Browse files
committed
workflows: run tests in container
1 parent 8067586 commit 958eebb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v6
15-
- uses: actions/setup-python@v6
16-
- run: pip install -r requirements-dev.txt
17-
- run: pip install .
18-
- run: pytest
15+
- run: docker build -f docker/Dockerfile -t reviewer-selector .
16+
- run: >
17+
docker run --entrypoint bash reviewer-selector
18+
-c 'pip install -r requirements-dev.txt && pytest'

0 commit comments

Comments
 (0)