setup.sh: Give pip multiple dependencies in a single run #5
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- run: pip install --upgrade pip | |
- run: sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer | |
- run: ./setup.sh | |
- run: xcodebuild -workspace Pyto.xcworkspace -scheme Pyto -configuration Release |