Testing Action features #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/16836036/meapp-9.12.24b1.tar.gz | |
./menv/bin/meapp -V | |
macos: | |
runs-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/16836036/meapp-9.12.24b1.tar.gz | |
./menv/bin/meapp -V |