Update pypa/gh-action-pypi-publish action to v1.12.2 #504
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
on: [push, pull_request] | |
name: iOS | |
jobs: | |
Integration: | |
name: "Integration (${{ matrix.runs_on }}, ${{ matrix.python }})" | |
runs-on: ${{ matrix.runs_on }} | |
strategy: | |
matrix: | |
# macos-latest (ATM macos-14) runs on Apple Silicon, | |
# macos-13 runs on Intel | |
runs_on: [macos-latest, macos-13] | |
steps: | |
- name: Setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- uses: actions/checkout@v4 | |
- name: Setup environment | |
run: | | |
pip install .[ios] | |
- name: Check buildozer installation | |
run: | | |
buildozer --help | |
- name: Initialize buildozer in project folder | |
run: | | |
buildozer init | |
- name: Install dependencies | |
run: | | |
brew install autoconf automake libtool pkg-config | |
- name: buildozer ios debug | |
run: | | |
touch main.py | |
buildozer ios debug |