-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (53 loc) · 1.78 KB
/
testing.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Testing Action features
on:
workflow_dispatch:
branches: [ master ]
jobs:
linux:
runs-on: ubuntu-latest
name: Build on Ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: check Python package install
run: |
uname -a
uname -n
uname -s
python --version
python -m venv menv
./menv/bin/pip install https://github.com/user-attachments/files/16840928/meapp-9.12.24b1.tar.gz
./menv/bin/meapp -V
macos:
runs-on: macos-latest
name: Build on MacOS latest
steps:
- uses: actions/checkout@v4
- name: check Python package install
run: |
uname -a
uname -n
uname -s
python --version
python -m venv menv
./menv/bin/pip install https://github.com/user-attachments/files/16840928/meapp-9.12.24b1.tar.gz
./menv/bin/meapp -V
windows:
runs-on: windows-2022
name: Build on Windows 2022
steps:
- uses: actions/checkout@v4
- name: check Python package install
run: |
python --version
python -c "import sys; print(sys.executable)"
pip --version
#pip install https://github.com/user-attachments/files/16840928/meapp-9.12.24b1.tar.gz
python -m venv menv
dir menv\Scripts
menv\Scripts\activate.bat
$Env:PATH = [System.Environment]::CurrentDirectory + "menv\Scripts" + ";"+$Env:PATH
python -c "import sys; print(sys.executable)"
python -c "import os; print(os.path.expanduser('~'))"
pip install https://github.com/user-attachments/files/16840928/meapp-9.12.24b1.tar.gz
$Env:PATH += ";C:\Users\runneradmin\AppData\Roaming\Python\Python39\Scripts"
meapp -V