Skip to content

Commit 46713dd

Browse files
add requirement installation to tests
1 parent 987380b commit 46713dd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci_cd.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,19 @@ jobs:
3232
python-version: ['3.9', '3.12']
3333
fail-fast: false
3434
steps:
35+
- name: Checkout code
36+
uses: actions/checkout@v4
37+
38+
- name: Set up Python ${{ matrix.python-version }}
39+
uses: actions/setup-python@v2
40+
with:
41+
python-version: ${{ matrix.python-version }}
42+
43+
- name: Install dependencies
44+
run: |
45+
python -m pip install --upgrade pip
46+
pip install -r requirements.txt
47+
3548
- name: Testing (Linux)
3649
uses: ansys/actions/tests-pytest@v6
3750
timeout-minutes: 12

0 commit comments

Comments
 (0)