Skip to content

Commit

Permalink
Fixes ansible#2270 use relaxed or tested requirements
Browse files Browse the repository at this point in the history
This change updates the build package docs workflow to use either
relaxed or tested requirements files.
  • Loading branch information
oraNod committed Dec 9, 2024
1 parent fe89755 commit 5b8e3d6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/build-package-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ on:
- '11'
- '10'
- '9'
requirements:
type: choice
description: Use relax or tested requirements
default: tested
options:
- relaxed
- tested
deploy:
type: boolean
description: Deploy the build
Expand Down Expand Up @@ -73,8 +80,8 @@ jobs:
- name: Install project requirements
run: >-
python -m pip install
-r tests/requirements.in
-c tests/requirements.txt
-r tests/requirements-relaxed.in
-c tests/requirements-relaxed.txt
working-directory: build-directory

- name: Set the COLLECTION_LIST variable
Expand Down

0 comments on commit 5b8e3d6

Please sign in to comment.