Updated documentation #135
Workflow file for this run
This file contains hidden or 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
| # GitHub Actions CI build | |
| name: build | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build: | |
| name: Build on macOS | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - run: gem install xcpretty | |
| - name: Build app | |
| run: | | |
| make build_unsigned | xcpretty -c && exit ${PIPESTATUS[0]} | |
| - name: Test command line tool install | |
| run: | | |
| cd products/Platypus.app/Contents/Resources | |
| sudo sh InstallCommandLineTool.sh | |
| platypus --version | |
| - name: Install Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.9" | |
| - name: Run tests | |
| run: | | |
| pip3 install pytest | |
| make clt_tests |