This commit is contained in:
@@ -7,16 +7,17 @@ on:
|
||||
jobs:
|
||||
build_macos:
|
||||
runs-on: macos
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Hello
|
||||
run: echo "Hello, this is MacOS builder"
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.13"
|
||||
|
||||
- name: Install Python
|
||||
run: apk add python3 py3-pip
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: pip3 install -r requirements.txt
|
||||
|
||||
- name: Show Python libraries
|
||||
run: pip3 list
|
||||
- name: Install deps
|
||||
run: |
|
||||
python3 -m venv .venv
|
||||
. .venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
|
||||
Reference in New Issue
Block a user