test fork/vfork/execve/posix_spawn #116
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
| name: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test-macos: | |
| name: macOS ${{ matrix.arch }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| # x86_64 support is work in progress | |
| # - os: macos-15-large # Intel x86_64 | |
| # arch: x86_64 | |
| - os: macos-latest # Apple Silicon arm64 | |
| arch: arm64 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run tests | |
| run: /usr/bin/python3 run_tests.py -v |