Skip to content

Testing Action features #19

Testing Action features

Testing Action features #19

Workflow file for this run

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/16836620/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/16836620/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
pip --version
pip install https://github.com/user-attachments/files/16836620/meapp-9.12.24b1.tar.gz
python -m venv menv
dir menv
menv\Scripts\activate.bat
pip install https://github.com/user-attachments/files/16836620/meapp-9.12.24b1.tar.gz
dir menv
dir menv\lib
dir menv\Scripts
dir C:\hostedtoolcache\windows\Python\3.9.13\
#meapp -V
## venv seems not to work