Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Also run github action tests for docker directory #276

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ on:
push:
paths:
- 'scripts/python/**'
- 'docker/**'
- '.github/workflows/ci.yml'
pull_request:
paths:
- 'scripts/python/**'
- 'docker/**'
- '.github/workflows/ci.yml'

permissions:
Expand All @@ -33,11 +35,19 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
- name: Install dependencies for scripts/python
run: |
cd scripts/python
poetry install
- name: Run tests
- name: Run tests in scripts/python
run: |
cd scripts/python
poetry run pytest tests
- name: Install dependencies for docker folder
run: |
cd docker
poetry install
- name: Run tests in docker folder
run: |
cd docker
poetry run pytest tests
Loading