add macOS debug workflow and sandbox script #1
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: Debug macOS | |
| on: | |
| push: | |
| branches: | |
| - 'debug/mac-tests' | |
| jobs: | |
| debug: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.21' | |
| - name: Start Interactive SSH Session | |
| uses: mxschmitt/action-tmate@v3 |