Redo subtree #13
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: PR Validation | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| macos: | |
| name: Test on macOS | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run test suite | |
| run: swift test --filter "SubtreeLibTests" | |
| linux: | |
| name: Test on Linux | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # - name: Set up Docker Buildx | |
| # uses: docker/setup-buildx-action@v3 | |
| - name: Run Linux test suite | |
| run: | | |
| docker run --rm -v "$(pwd):/workspace" -w /workspace swift:6.1 \ | |
| bash -c "swift package resolve && swift test --filter 'SubtreeLibTests'" |