support set IndexStoreDB prefixMappings #99
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: ci | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test-bazel: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
| - run: bazelisk build //... | |
| - run: bazelisk test //... | |
| test-swiftpm: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: sudo xcode-select -s /Applications/Xcode_16.2.app | |
| - run: swift build | |
| - run: swift test |