-
-
Notifications
You must be signed in to change notification settings - Fork 34
44 lines (35 loc) · 1.01 KB
/
detect-depends.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Detect Depends
on: workflow_dispatch
permissions: write-all
jobs:
Windows:
strategy:
fail-fast: false
matrix:
os:
- windows-latest
architecture:
- x64
runs-on: ${{ matrix.os }}
steps:
- name: Check-out repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip'
cache-dependency-path: |
requirements.txt
- name: Update Pip and Install Requirements
shell: pwsh
run: |
python -m pip install -U pip setuptools
echo "-----------------------------------------"
python -m pip list
echo "-----------------------------------------"
python -m pip install -r requirements.txt
python -m pip uninstall numpy -y
python -m pip uninstall scipy -y
echo "-----------------------------------------"
python -m pip list