We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 987380b commit 46713ddCopy full SHA for 46713dd
.github/workflows/ci_cd.yml
@@ -32,6 +32,19 @@ jobs:
32
python-version: ['3.9', '3.12']
33
fail-fast: false
34
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
48
- name: Testing (Linux)
49
uses: ansys/actions/tests-pytest@v6
50
timeout-minutes: 12
0 commit comments