Skip to content

Commit

Permalink
ci: add a new client to pipeline
Browse files Browse the repository at this point in the history
- add to test's step
- add to publish's step
  • Loading branch information
gibiw committed May 3, 2024
1 parent 8df30c4 commit 945e557
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ jobs:
max-parallel: 5
matrix:
python-version:
- '3.11'
- '3.10'
- '3.9'
- '3.8'
- '3.7'
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"
changed-dir:
- "qaseio"
- "qase-api-v2-client"
- "qase-pytest"
- "qase-robotframework"
- "qase-python-commons"
Expand All @@ -26,13 +27,13 @@ jobs:
- uses: dorny/paths-filter@v2
id: filter
with:
list-files: 'shell'
list-files: "shell"
filters: |
changes:
- '${{ matrix.changed-dir }}/**'
- name: Set up Python ${{ matrix.python-version }}
if: steps.filter.outputs.changes == 'true'
uses: actions/setup-python@v2
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -51,7 +52,14 @@ jobs:
strategy:
max-parallel: 1
matrix:
prefix: [ "qaseio", "qase-pytest", "qase-robotframework", "qase-python-commons" ]
prefix:
[
"qaseio",
"qase-api-v2-client",
"qase-pytest",
"qase-robotframework",
"qase-python-commons",
]
if: startsWith(github.event.ref, 'refs/tags')
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 945e557

Please sign in to comment.